* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */ class FileSystemHandler extends BaseHandler { /** * @param DriverInterface $filesystem * @param LogAnonymizerInterface $anonymizer * @param string $filePath */ public function __construct( DriverInterface $filesystem, LogAnonymizerInterface $anonymizer, $filePath = null ) { $this->fileName = '/var/log/temando.log'; parent::__construct($filesystem, $filePath); $this->bubble = false; $this->pushProcessor($anonymizer); } }