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