This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle\Repository; | |
use AppBundle\Entity\Country; | |
use AppBundle\Entity\CountryTranslation; | |
use Doctrine\ORM\EntityRepository; | |
use Doctrine\ORM\Query\ResultSetMapping; | |
use Doctrine\ORM\QueryBuilder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace FrontEndBundle\Request\ParamConverter; | |
use Doctrine\Bundle\DoctrineBundle\Registry; | |
use Doctrine\Common\Persistence\ObjectRepository; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
abstract class AbstractBySlugAndActiveSearcher |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DATE_ADD('2016-08-02', INTERVAL help_topic_id DAY) as mydate | |
FROM mysql.help_topic order by help_topic_id asc limit 14 |