@@ -35,6 +35,6 @@ |
||
| 35 | 35 | |
| 36 | 36 | public function __toString() |
| 37 | 37 | { |
| 38 | - return __CLASS__ . '[id=' . $this->id . ']'; |
|
| 38 | + return __CLASS__.'[id='.$this->id.']'; |
|
| 39 | 39 | } |
| 40 | 40 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | return; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if (! isset(self::$sharedConn)) { |
|
| 39 | + if ( ! isset(self::$sharedConn)) { |
|
| 40 | 40 | self::$sharedConn = TestUtil::getConnection(); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | { |
| 65 | 65 | $reader = new Annotations\CachedReader(new Annotations\AnnotationReader(), new ArrayCache()); |
| 66 | 66 | |
| 67 | - Annotations\AnnotationRegistry::registerFile(__DIR__ . '/../../../lib/Doctrine/ORM/Annotation/DoctrineAnnotations.php'); |
|
| 67 | + Annotations\AnnotationRegistry::registerFile(__DIR__.'/../../../lib/Doctrine/ORM/Annotation/DoctrineAnnotations.php'); |
|
| 68 | 68 | |
| 69 | 69 | return new AnnotationDriver($reader, (array) $paths); |
| 70 | 70 | } |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | $config->setProxyNamespace('Doctrine\Tests\Proxies'); |
| 102 | 102 | $config->setAutoGenerateProxyClasses(ProxyFactory::AUTOGENERATE_EVAL); |
| 103 | 103 | $config->setMetadataDriverImpl( |
| 104 | - $config->newDefaultAnnotationDriver([realpath(__DIR__ . '/Models/Cache')]) |
|
| 104 | + $config->newDefaultAnnotationDriver([realpath(__DIR__.'/Models/Cache')]) |
|
| 105 | 105 | ); |
| 106 | 106 | |
| 107 | 107 | if ($this->isSecondLevelCacheEnabled) { |
@@ -51,11 +51,11 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function __construct(Region $region, $directory, $lockLifetime) |
| 53 | 53 | { |
| 54 | - if (! is_dir($directory) && ! @mkdir($directory, 0775, true)) { |
|
| 54 | + if ( ! is_dir($directory) && ! @mkdir($directory, 0775, true)) { |
|
| 55 | 55 | throw new \InvalidArgumentException(sprintf('The directory "%s" does not exist and could not be created.', $directory)); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if (! is_writable($directory)) { |
|
| 58 | + if ( ! is_writable($directory)) { |
|
| 59 | 59 | throw new \InvalidArgumentException(sprintf('The directory "%s" is not writable.', $directory)); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -71,14 +71,14 @@ discard block |
||
| 71 | 71 | { |
| 72 | 72 | $filename = $this->getLockFileName($key); |
| 73 | 73 | |
| 74 | - if (! is_file($filename)) { |
|
| 74 | + if ( ! is_file($filename)) { |
|
| 75 | 75 | return false; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | $time = $this->getLockTime($filename); |
| 79 | 79 | $content = $this->getLockContent($filename); |
| 80 | 80 | |
| 81 | - if (! $content || ! $time) { |
|
| 81 | + if ( ! $content || ! $time) { |
|
| 82 | 82 | @unlink($filename); |
| 83 | 83 | |
| 84 | 84 | return false; |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | private function getLockFileName(CacheKey $key) |
| 105 | 105 | { |
| 106 | - return $this->directory . DIRECTORY_SEPARATOR . $key->hash . '.' . self::LOCK_EXTENSION; |
|
| 106 | + return $this->directory.DIRECTORY_SEPARATOR.$key->hash.'.'.self::LOCK_EXTENSION; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | $lock = Lock::createLockRead(); |
| 225 | 225 | $filename = $this->getLockFileName($key); |
| 226 | 226 | |
| 227 | - if (! @file_put_contents($filename, $lock->value, LOCK_EX)) { |
|
| 227 | + if ( ! @file_put_contents($filename, $lock->value, LOCK_EX)) { |
|
| 228 | 228 | return null; |
| 229 | 229 | } |
| 230 | 230 | chmod($filename, 0664); |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | return false; |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | - if (! @unlink($this->getLockFileName($key))) { |
|
| 244 | + if ( ! @unlink($this->getLockFileName($key))) { |
|
| 245 | 245 | return false; |
| 246 | 246 | } |
| 247 | 247 | |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | $isInitialized = $collection->isInitialized(); |
| 62 | 62 | $isDirty = $collection->isDirty(); |
| 63 | 63 | |
| 64 | - if (! $isInitialized && ! $isDirty) { |
|
| 64 | + if ( ! $isInitialized && ! $isDirty) { |
|
| 65 | 65 | return; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -181,14 +181,14 @@ discard block |
||
| 181 | 181 | ; |
| 182 | 182 | |
| 183 | 183 | if ($cache->getUsage() === CacheUsage::READ_WRITE) { |
| 184 | - if (! $this->fileLockRegionDirectory) { |
|
| 184 | + if ( ! $this->fileLockRegionDirectory) { |
|
| 185 | 185 | throw new \LogicException( |
| 186 | - 'If you want to use a "READ_WRITE" cache an implementation of "Doctrine\ORM\Cache\ConcurrentRegion" is required, ' . |
|
| 186 | + 'If you want to use a "READ_WRITE" cache an implementation of "Doctrine\ORM\Cache\ConcurrentRegion" is required, '. |
|
| 187 | 187 | 'The default implementation provided by doctrine is "Doctrine\ORM\Cache\Region\FileLockRegion" if you want to use it please provide a valid directory, DefaultCacheFactory#setFileLockRegionDirectory(). ' |
| 188 | 188 | ); |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - $directory = $this->fileLockRegionDirectory . DIRECTORY_SEPARATOR . $regionName; |
|
| 191 | + $directory = $this->fileLockRegionDirectory.DIRECTORY_SEPARATOR.$regionName; |
|
| 192 | 192 | $region = new FileLockRegion($region, $directory, $this->regionsConfig->getLockLifetime($regionName)); |
| 193 | 193 | } |
| 194 | 194 | |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | { |
| 205 | 205 | $cacheAdapter = clone $this->cache; |
| 206 | 206 | |
| 207 | - if (! $cacheAdapter instanceof CacheProvider) { |
|
| 207 | + if ( ! $cacheAdapter instanceof CacheProvider) { |
|
| 208 | 208 | return $cacheAdapter; |
| 209 | 209 | } |
| 210 | 210 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | $namespace .= ':'; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - $cacheAdapter->setNamespace($namespace . $name); |
|
| 217 | + $cacheAdapter->setNamespace($namespace.$name); |
|
| 218 | 218 | |
| 219 | 219 | return $cacheAdapter; |
| 220 | 220 | } |
@@ -47,6 +47,6 @@ |
||
| 47 | 47 | $this->ownerIdentifier = $ownerIdentifier; |
| 48 | 48 | $this->entityClass = (string) $entityClass; |
| 49 | 49 | $this->association = (string) $association; |
| 50 | - $this->hash = str_replace('\\', '.', strtolower($entityClass)) . '_' . implode(' ', $ownerIdentifier) . '__' . $association; |
|
| 50 | + $this->hash = str_replace('\\', '.', strtolower($entityClass)).'_'.implode(' ', $ownerIdentifier).'__'.$association; |
|
| 51 | 51 | } |
| 52 | 52 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | public static function fromDriver(Cache $cache) : self |
| 13 | 13 | { |
| 14 | 14 | return new self( |
| 15 | - 'Metadata Cache uses a non-persistent cache driver, ' . get_class($cache) . '.' |
|
| 15 | + 'Metadata Cache uses a non-persistent cache driver, '.get_class($cache).'.' |
|
| 16 | 16 | ); |
| 17 | 17 | } |
| 18 | 18 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | public static function fromDriver(Cache $cache) : self |
| 13 | 13 | { |
| 14 | 14 | return new self( |
| 15 | - 'Query Cache uses a non-persistent cache driver, ' . get_class($cache) . '.' |
|
| 15 | + 'Query Cache uses a non-persistent cache driver, '.get_class($cache).'.' |
|
| 16 | 16 | ); |
| 17 | 17 | } |
| 18 | 18 | } |