1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-09 14:46:46 +02:00

move public method before protected ones

This commit is contained in:
Luis Cordova
2013-11-05 10:07:35 -05:00
parent 6489e364d8
commit 93469c4108

View File

@@ -60,6 +60,12 @@ class RotatingFileHandler extends StreamHandler
} }
} }
public function setTimedFilename($filenameFormat, $dateFormat)
{
$this->filenameFormat = $filenameFormat;
$this->dateFormat = $dateFormat;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
@@ -140,10 +146,4 @@ class RotatingFileHandler extends StreamHandler
return $glob; return $glob;
} }
public function setTimedFilename($filenameFormat, $dateFormat)
{
$this->filenameFormat = $filenameFormat;
$this->dateFormat = $dateFormat;
}
} }