|
@@ -217,12 +217,12 @@ |
|
|
block discarded – undo |
|
217
|
217
|
|
|
218
|
218
|
if ( ! $this->fileLockRegionDirectory) { |
|
219
|
219
|
throw new \LogicException( |
|
220
|
|
- 'If you want to use a "READ_WRITE" cache an implementation of "Doctrine\ORM\Cache\ConcurrentRegion" is required, ' . |
|
|
220
|
+ 'If you want to use a "READ_WRITE" cache an implementation of "Doctrine\ORM\Cache\ConcurrentRegion" is required, '. |
|
221
|
221
|
'The default implementation provided by doctrine is "Doctrine\ORM\Cache\Region\FileLockRegion" if you what to use it please provide a valid directory, DefaultCacheFactory#setFileLockRegionDirectory(). ' |
|
222
|
222
|
); |
|
223
|
223
|
} |
|
224
|
224
|
|
|
225
|
|
- $directory = $this->fileLockRegionDirectory . DIRECTORY_SEPARATOR . $cache['region']; |
|
|
225
|
+ $directory = $this->fileLockRegionDirectory.DIRECTORY_SEPARATOR.$cache['region']; |
|
226
|
226
|
$region = new FileLockRegion($region, $directory, $this->regionsConfig->getLockLifetime($cache['region'])); |
|
227
|
227
|
} |
|
228
|
228
|
|
Please login to merge, or discard this patch.