@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | private function getLockFileName(CacheKey $key) |
| 120 | 120 | { |
| 121 | - return $this->directory . DIRECTORY_SEPARATOR . $key->hash . '.' . self::LOCK_EXTENSION; |
|
| 121 | + return $this->directory.DIRECTORY_SEPARATOR.$key->hash.'.'.self::LOCK_EXTENSION; |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | { |
| 217 | 217 | // The check below is necessary because on some platforms glob returns false |
| 218 | 218 | // when nothing matched (even though no errors occurred) |
| 219 | - $filenames = glob(sprintf("%s/*.%s" , $this->directory, self::LOCK_EXTENSION)); |
|
| 219 | + $filenames = glob(sprintf("%s/*.%s", $this->directory, self::LOCK_EXTENSION)); |
|
| 220 | 220 | |
| 221 | 221 | if ($filenames) { |
| 222 | 222 | foreach ($filenames as $filename) { |
@@ -211,6 +211,7 @@ |
||
| 211 | 211 | |
| 212 | 212 | /** |
| 213 | 213 | * {@inheritdoc} |
| 214 | + * @return boolean |
|
| 214 | 215 | */ |
| 215 | 216 | public function evictAll() |
| 216 | 217 | { |
@@ -38,9 +38,9 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | class DefaultQueryCache implements QueryCache |
| 40 | 40 | { |
| 41 | - /** |
|
| 42 | - * @var \Doctrine\ORM\EntityManagerInterface |
|
| 43 | - */ |
|
| 41 | + /** |
|
| 42 | + * @var \Doctrine\ORM\EntityManagerInterface |
|
| 43 | + */ |
|
| 44 | 44 | private $em; |
| 45 | 45 | |
| 46 | 46 | /** |
@@ -130,7 +130,7 @@ |
||
| 130 | 130 | |
| 131 | 131 | if ( ! $hasRelation) { |
| 132 | 132 | |
| 133 | - $result[$index] = $this->uow->createEntity($entityEntry->class, $entityEntry->resolveAssociationEntries($this->em), self::$hints); |
|
| 133 | + $result[$index] = $this->uow->createEntity($entityEntry->class, $entityEntry->resolveAssociationEntries($this->em), self::$hints); |
|
| 134 | 134 | |
| 135 | 135 | continue; |
| 136 | 136 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | $targetAssoc = $targetClassMetadata->associationMappings[$fieldName]; |
| 111 | 111 | |
| 112 | - foreach($assoc['targetToSourceKeyColumns'] as $referencedColumn => $localColumn) { |
|
| 112 | + foreach ($assoc['targetToSourceKeyColumns'] as $referencedColumn => $localColumn) { |
|
| 113 | 113 | if (isset($targetAssoc['sourceToTargetKeyColumns'][$referencedColumn])) { |
| 114 | 114 | $data[$localColumn] = $fieldValue; |
| 115 | 115 | } |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | foreach ($metadata->associationMappings as $name => $assoc) { |
| 164 | - if ( ! isset($assoc['cache']) || ! isset($data[$name])) { |
|
| 164 | + if ( ! isset($assoc['cache']) || ! isset($data[$name])) { |
|
| 165 | 165 | continue; |
| 166 | 166 | } |
| 167 | 167 | |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | |
| 22 | 22 | use Doctrine\Common\Collections\ArrayCollection; |
| 23 | 23 | use Doctrine\Common\Collections\Criteria; |
| 24 | - |
|
| 25 | 24 | use Doctrine\ORM\Query\Expr; |
| 26 | 25 | use Doctrine\ORM\Query\QueryExpressionVisitor; |
| 27 | 26 | |
@@ -56,12 +56,12 @@ |
||
| 56 | 56 | */ |
| 57 | 57 | public function entityCacheMiss($regionName, EntityCacheKey $key); |
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * Log an entity put into second level cache. |
|
| 61 | - * |
|
| 62 | - * @param string $regionName The name of the cache region. |
|
| 63 | - * @param \Doctrine\ORM\Cache\CollectionCacheKey $key The cache key of the collection. |
|
| 64 | - */ |
|
| 59 | + /** |
|
| 60 | + * Log an entity put into second level cache. |
|
| 61 | + * |
|
| 62 | + * @param string $regionName The name of the cache region. |
|
| 63 | + * @param \Doctrine\ORM\Cache\CollectionCacheKey $key The cache key of the collection. |
|
| 64 | + */ |
|
| 65 | 65 | public function collectionCachePut($regionName, CollectionCacheKey $key); |
| 66 | 66 | |
| 67 | 67 | /** |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | $ownerId = $this->uow->getEntityIdentifier($collection->getOwner()); |
| 86 | 86 | $key = new CollectionCacheKey($this->sourceEntity->rootEntityName, $this->association['fieldName'], $ownerId); |
| 87 | 87 | |
| 88 | - // Invalidate non initialized collections OR ordered collection |
|
| 88 | + // Invalidate non initialized collections OR ordered collection |
|
| 89 | 89 | if ($isDirty && ! $isInitialized || isset($this->association['orderBy'])) { |
| 90 | 90 | $this->persister->update($collection); |
| 91 | 91 | |
@@ -61,6 +61,6 @@ |
||
| 61 | 61 | $this->ownerIdentifier = $ownerIdentifier; |
| 62 | 62 | $this->entityClass = (string) $entityClass; |
| 63 | 63 | $this->association = (string) $association; |
| 64 | - $this->hash = str_replace('\\', '.', strtolower($entityClass)) . '_' . implode(' ', $ownerIdentifier) . '__' . $association; |
|
| 64 | + $this->hash = str_replace('\\', '.', strtolower($entityClass)).'_'.implode(' ', $ownerIdentifier).'__'.$association; |
|
| 65 | 65 | } |
| 66 | 66 | } |
@@ -52,6 +52,6 @@ |
||
| 52 | 52 | |
| 53 | 53 | $this->identifier = $identifier; |
| 54 | 54 | $this->entityClass = $entityClass; |
| 55 | - $this->hash = str_replace('\\', '.', strtolower($entityClass) . '_' . implode(' ', $identifier)); |
|
| 55 | + $this->hash = str_replace('\\', '.', strtolower($entityClass).'_'.implode(' ', $identifier)); |
|
| 56 | 56 | } |
| 57 | 57 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | public function __construct($value, $time = null) |
| 46 | 46 | { |
| 47 | 47 | $this->value = $value; |
| 48 | - $this->time = $time ? : time(); |
|
| 48 | + $this->time = $time ?: time(); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -93,7 +93,7 @@ |
||
| 93 | 93 | return $this->collection->isEmpty(); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - return !$this->count(); |
|
| 96 | + return ! $this->count(); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |