Newer
Older
framework / system / Test / Mock / MockFileLogger.php
@Lonnie Ezell Lonnie Ezell on 24 Feb 2020 564 bytes Release 4.0.0
<?php namespace CodeIgniter\Test\Mock;

/**
 * Class MockFileLogger
 *
 * Extends FileHandler, exposing some inner workings
 */

class MockFileLogger extends \CodeIgniter\Log\Handlers\FileHandler
{
	/**
	 * Where would the log be written?
	 */
	public $destination;

	//--------------------------------------------------------------------

	public function __construct(array $config)
	{
		parent::__construct($config);
		$this->handles     = $config['handles'] ?? [];
		$this->destination = $this->path . 'log-' . date('Y-m-d') . '.' . $this->fileExtension;
	}

}