summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOnno Vos <onno.vos@klarna.com>2015-03-09 12:55:21 +0100
committerOnno Vos <onno.vos@klarna.com>2015-03-09 12:55:21 +0100
commitdcf98ff17505df9281ab44dd25320720bd7ef4c8 (patch)
tree4855cfcfa68ee38eea4a5ad7d3d277185e6bc9e9
parent00e8447fe416a7c486f2bfc7e3b1c9a58ade5abc (diff)
downloadKLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.zip
KLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.tar.gz
KLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.tar.bz2
Add array to PHPDoc of constructor
-rwxr-xr-xsrc/Logger.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Logger.php b/src/Logger.php
index e90ce15..e83311c 100755
--- a/src/Logger.php
+++ b/src/Logger.php
@@ -98,13 +98,14 @@ class Logger extends AbstractLogger
private $defaultPermissions = 0777;
/**
- /**
* Class constructor
*
- * @param string $logDirectory File path to the logging directory
- * @param string $logLevelThreshold The LogLevel Threshold
- * @param string $logFilePrefix The prefix for the log file name
- * @param string $logFileExt The extension for the log file
+ * @param string $logDirectory File path to the logging directory
+ * @param string $logLevelThreshold The LogLevel Threshold
+ * @param array $options
+ *
+ * @internal param string $logFilePrefix The prefix for the log file name
+ * @internal param string $logFileExt The extension for the log file
*/
public function __construct($logDirectory, $logLevelThreshold = LogLevel::DEBUG, $options = array())
{