for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Guillermoandrae\Repositories;
use Guillermoandrae\Common\DumpableTrait;
abstract class AbstractRepository implements RepositoryInterface
{
use DumpableTrait;
/**
* Repository options.
*
* @var mixed|null
*/
protected $options;
* Constructor. Provides the ability to inject dependencies using the RepositoryFactory.
* @see RepositoryFactory
* @param mixed|null $options The repository options.
public function __construct($options = null)
$this->options = $options;
}