summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Katzgrau <ext.kkatzgrau@hexiscyber.com>2015-02-26 19:03:55 -0500
committerKenny Katzgrau <ext.kkatzgrau@hexiscyber.com>2015-02-26 19:03:55 -0500
commit5715eff71c6657f535890db3c0e5320ab3daac74 (patch)
tree72411e24c0773cdd2f4101f3431dc26c96d2b6f3
parentf28ccdafdaaf664367dc640d3a0ce14b6246d187 (diff)
downloadKLogger-5715eff71c6657f535890db3c0e5320ab3daac74.zip
KLogger-5715eff71c6657f535890db3c0e5320ab3daac74.tar.gz
KLogger-5715eff71c6657f535890db3c0e5320ab3daac74.tar.bz2
Update docs, closes #36
-rwxr-xr-xsrc/Logger.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Logger.php b/src/Logger.php
index c558f4c..c16254d 100755
--- a/src/Logger.php
+++ b/src/Logger.php
@@ -73,8 +73,7 @@ class Logger extends AbstractLogger
* Class constructor
*
* @param string $logDirectory File path to the logging directory
- * @param integer $logLevelThreshold The LogLevel Threshold
- * @return void
+ * @param string $logLevelThreshold The LogLevel Threshold
*/
public function __construct($logDirectory, $logLevelThreshold = LogLevel::DEBUG)
{
@@ -119,7 +118,7 @@ class Logger extends AbstractLogger
/**
* Sets the Log Level Threshold
*
- * @param string $dateFormat Valid format string for date()
+ * @param string $logLevelThreshold Valid format string for date()
*/
public function setLogLevelThreshold($logLevelThreshold)
{
@@ -146,7 +145,7 @@ class Logger extends AbstractLogger
/**
* Writes a line to the log without prepending a status or timestamp
*
- * @param string $line Line to write to the log
+ * @param string $message Line to write to the log
* @return void
*/
public function write($message)