for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BFW\Core\AppSystems;
class Errors extends AbstractSystem
{
/**
* @var \BFW\Core\Errors $errors The error object
*/
protected $errors;
* Initialize the errors property
public function __construct()
$this->errors = new \BFW\Core\Errors;
}
* {@inheritdoc}
*
* @return \BFW\Core\Errors
public function __invoke()
return $this->errors;
* Getter accessor to property errors
public function getErrors()