1
0
mirror of synced 2025-03-06 21:06:16 +03:00

#5987 CS: spacing after ! (not) operator

This commit is contained in:
Marco Pivetta 2016-11-26 05:23:04 +01:00
parent 24da9061b9
commit 3cd7b8c951
2 changed files with 5 additions and 3 deletions

View File

@ -126,6 +126,7 @@ class LockTest extends OrmFunctionalTestCase
public function testLockPessimisticWrite()
{
$writeLockSql = $this->_em->getConnection()->getDatabasePlatform()->getWriteLockSQL();
if (! $writeLockSql) {
$this->markTestSkipped('Database Driver has no Write Lock support.');
}
@ -157,6 +158,7 @@ class LockTest extends OrmFunctionalTestCase
public function testLockPessimisticRead()
{
$readLockSql = $this->_em->getConnection()->getDatabasePlatform()->getReadLockSQL();
if (! $readLockSql) {
$this->markTestSkipped('Database Driver has no Write Lock support.');
}