diff options
author | Onno Vos <onno.vos@klarna.com> | 2015-03-09 12:55:21 +0100 |
---|---|---|
committer | Onno Vos <onno.vos@klarna.com> | 2015-03-09 12:55:21 +0100 |
commit | dcf98ff17505df9281ab44dd25320720bd7ef4c8 (patch) | |
tree | 4855cfcfa68ee38eea4a5ad7d3d277185e6bc9e9 | |
parent | 00e8447fe416a7c486f2bfc7e3b1c9a58ade5abc (diff) | |
download | KLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.zip KLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.tar.gz KLogger-dcf98ff17505df9281ab44dd25320720bd7ef4c8.tar.bz2 |
Add array to PHPDoc of constructor
-rwxr-xr-x | src/Logger.php | 11 |
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())
{
|