for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acelaya\Test\Doctrine\Type;
use Acelaya\Doctrine\Type\PhpEnumType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
class MyType extends PhpEnumType
{
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
return 'FOO BAR';
}