for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\DBAL\Mocks;
use Doctrine\DBAL\Platforms\Keywords\KeywordList;
class KeywordsMock extends KeywordList
{
/**
* {@inheritdoc}
*/
public function getName()
return 'mock';
}
protected function getKeywords()
return array(
'RESERVED'
);