1. Go to this page and download the library: Download huttopia/doctrine library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
huttopia / doctrine example snippets
# app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles(): array
{
$bundles = [
new Huttopia\Doctrine\Bridge\Symfony3\HuttopiaDoctrineBundle()
];
return $bundles;
}
}
use Huttopia\Doctrine\SqlWalker\IgnoreDiscriminator
$queryBuilder
->getQuery()
->setHint(Query::HINT_CUSTOM_OUTPUT_WALKER, IgnoreDiscriminator::class);
# app/AppKernel.php
class AppKernel
{
public function boot(): void
{
parent::boot();
foreach ($this->getContainer()->get('doctrine')->getManagers() as $manager) {
if ($manager instanceof EntityManagerInterface) {
$manager->getConfiguration()->setDefaultQueryHint(
Query::HINT_CUSTOM_OUTPUT_WALKER,
IgnoreDiscriminator::class
);
}
}
}
}