for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Apix Project.
*
* (c) Franck Cassedanne <franck at ouarz.net>
* @license http://opensource.org/licenses/BSD-3-Clause New BSD License
*/
namespace Apix\Log\Logger;
use Apix\Log\LogEntry;
* Runtime (Array/ArrayObject) log wrapper.
* @author Franck Cassedanne <franck at ouarz.net>
class Runtime extends AbstractLogger implements LoggerInterface
{
* Holds the logged items.
* @var array
protected $items = array();
* {@inheritDoc}
public function write(LogEntry $log)
$this->items[] = (string) $log;
}
* Returns the logged items.
* @return array
public function getItems()
return $this->items;