for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Components;
use App\Models\BlockModel;
class BlocksByDayControl extends ABlocksByDayControl implements IBlocksByDayControl
{
const TEMPLATE_NAME = 'BlocksByDay';
/**
* @param BlockModel $model
*/
public function __construct(BlockModel $model, ProgramsControl $control)
$this->setBlockModel($model);
$this->setProgramsControl($control);
}