for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Loevgaard\CronBundle\Entity;
use Doctrine\ORM\EntityRepository;
class JobRepository extends EntityRepository
{
/**
* @return JobInterface[]
*/
public function getEnabledJobs()
return $this->findBy([
'enabled' => true,
]);
}