for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Bundle\DoctrineBundle\Tests\DependencyInjection;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\Type;
class TestCommentedType extends Type
{
public function getName()
return 'test';
}
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
return '';
public function requiresSQLCommentHint(AbstractPlatform $platform)
return true;