mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-16 14:16:29 +02:00
Initial commit
This commit is contained in:
41
src/Monolog/Writer/FileWriter.php
Normal file
41
src/Monolog/Writer/FileWriter.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Monolog package.
|
||||
*
|
||||
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Monolog\Writer;
|
||||
|
||||
class FileWriter extends StreamWriter
|
||||
{
|
||||
protected $rotation;
|
||||
protected $maxAge;
|
||||
|
||||
public function __construct($file, $rotation = null, $maxAge = null)
|
||||
{
|
||||
parent::__construct($file);
|
||||
$this->rotation = $rotation;
|
||||
$this->maxAge = $maxAge;
|
||||
}
|
||||
|
||||
public function close()
|
||||
{
|
||||
parent::close();
|
||||
// TODO rotation
|
||||
}
|
||||
|
||||
public function setRotation($rotation)
|
||||
{
|
||||
$this->rotation = $rotation;
|
||||
}
|
||||
|
||||
public function setMaxAge($maxAge)
|
||||
{
|
||||
$this->maxAge = $maxAge;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user