for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace BrowscapPHP\Util\Logfile;
/**
* abstract parent class for all readers
*/
final class ReaderFactory
{
* @return \BrowscapPHP\Util\Logfile\ReaderCollection
public static function factory() : ReaderCollection
$collection = new ReaderCollection();
$collection->addReader(new ApacheCommonLogFormatReader());
return $collection;
}