for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* BackendController
*/
namespace HDNET\Calendarize\Controller;
class BackendController extends AbstractController
{
protected $indexRepository;
*
public function listAction()
$this->settings['timeFormat'] = 'H:i';
$this->settings['dateFormat'] = 'd.m.Y';
$this->view->assignMultiple([
'indices' => $this->indexRepository->findAll(),
'settings' => $this->settings,
]);
}