for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alpixel\Bundle\CronBundle\Entity\Repository;
use Alpixel\Bundle\CronBundle\Entity\CronJob;
use Doctrine\ORM\EntityRepository;
class CronJobResultRepository extends EntityRepository
{
public function deleteOldLogs(CronJob $job = null)
$job
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this
->getEntityManager()
->createQuery('DELETE CronBundle:CronJobResult result')
->getResult();
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.