phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@@ -61,9 +61,6 @@ class MainLogger extends \AttachableThreadedLogger{
private $timezone;
/**
* @param string $logFile
* @param bool $logDebug
*
* @throws \RuntimeException
*/
public function __construct(string $logFile, bool $logDebug = false){
@@ -82,8 +79,6 @@ class MainLogger extends \AttachableThreadedLogger{
/**
* Returns the current logger format used for console output.
*
* @return string
*/
public function getFormat() : string{
return $this->format;
@@ -99,8 +94,6 @@ class MainLogger extends \AttachableThreadedLogger{
* - message
*
* @see http://php.net/manual/en/function.sprintf.php
*
* @param string $format
*/
public function setFormat(string $format) : void{
$this->format = $format;
@@ -141,15 +134,11 @@ class MainLogger extends \AttachableThreadedLogger{
$this->send($message, \LogLevel::DEBUG, "DEBUG", TextFormat::GRAY);
}
/**
* @param bool $logDebug
*/
public function setLogDebug(bool $logDebug) : void{
$this->logDebug = $logDebug;
}
/**
* @param \Throwable $e
* @param array|null $trace
*
* @return void