for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\DBAL\Platforms\Keywords;
use function array_merge;
/**
* Microsoft SQL Server 2008 reserved keyword dictionary.
*
* @link www.doctrine-project.com
*/
class SQLServer2008Keywords extends SQLServer2005Keywords
{
* {@inheritdoc}
public function getName()
return 'SQLServer2008';
}
* @link http://msdn.microsoft.com/en-us/library/ms189822%28v=sql.100%29.aspx
protected function getKeywords()
return array_merge(parent::getKeywords(), ['MERGE']);