for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\DashboardModule\Widget;
use Anomaly\DashboardModule\Widget\Contract\WidgetRepositoryInterface;
use Anomaly\Streams\Platform\Entry\EntryRepository;
class WidgetRepository extends EntryRepository implements WidgetRepositoryInterface
{
/**
* The entry model.
*
* @var WidgetModel
*/
protected $model;
* Create a new WidgetRepository instance.
* @param WidgetModel $model
public function __construct(WidgetModel $model)
$this->model = $model;
}