1
0
mirror of synced 2024-12-05 03:06:05 +03:00

#1333 - minor CS fixes - spacing/PSR-2

This commit is contained in:
Marco Pivetta 2015-03-17 20:59:56 +00:00
parent 8ac66bb608
commit 376e74fb7e

View File

@ -39,9 +39,11 @@ class ParameterTypeInfererTest extends \Doctrine\Tests\OrmTestCase
array(array(), Connection::PARAM_STR_ARRAY),
array(true, Type::BOOLEAN),
);
if(PHP_VERSION_ID >= 50500) {
if (PHP_VERSION_ID >= 50500) {
$data[] = array(new \DateTimeImmutable(), Type::DATETIME);
}
return $data;
}