@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function testAllMethodCallsAreDelegatedToTheWrappedInstance($method, array $parameters, $isVoidMethod) |
63 | 63 | { |
64 | - $returnedValue = $isVoidMethod ? null : 'INNER VALUE FROM ' . $method; |
|
64 | + $returnedValue = $isVoidMethod ? null : 'INNER VALUE FROM '.$method; |
|
65 | 65 | $stub = $this->wrapped |
66 | 66 | ->expects($this->once()) |
67 | 67 | ->method($method) |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | public function getAssociationTargetClass($assocName) |
179 | 179 | { |
180 | - return __NAMESPACE__ . '\TestObject'; |
|
180 | + return __NAMESPACE__.'\TestObject'; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | public function getFieldNames() |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | |
193 | 193 | public function getName() |
194 | 194 | { |
195 | - return __NAMESPACE__ . '\TestObject'; |
|
195 | + return __NAMESPACE__.'\TestObject'; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | public function getReflectionClass() |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $this->cm = new TestObjectMetadata(); |
36 | 36 | $this->om = $this->createMock(ObjectManager::class); |
37 | 37 | $this->om->expects($this->any())->method('getClassMetadata') |
38 | - ->will($this->returnValue($this->cm)); |
|
38 | + ->will($this->returnValue($this->cm)); |
|
39 | 39 | $this->object = new TestObject(); |
40 | 40 | PersistentObject::setObjectManager($this->om); |
41 | 41 | $this->object->injectObjectManager($this->om, $this->cm); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | public function testGetAllClassNames() |
14 | 14 | { |
15 | 15 | $reader = new AnnotationReader(); |
16 | - $driver = new SimpleAnnotationDriver($reader, [__DIR__ . '/_files/annotation']); |
|
16 | + $driver = new SimpleAnnotationDriver($reader, [__DIR__.'/_files/annotation']); |
|
17 | 17 | |
18 | 18 | $classes = $driver->getAllClassNames(); |
19 | 19 |
@@ -16,7 +16,7 @@ |
||
16 | 16 | $metadata = $this->createMock(ClassMetadata::class); |
17 | 17 | $metadata->expects($this->once())->method('getFieldNames'); |
18 | 18 | |
19 | - $driver = new PHPDriver([__DIR__ . '/_files']); |
|
19 | + $driver = new PHPDriver([__DIR__.'/_files']); |
|
20 | 20 | $driver->loadMetadataForClass('TestEntity', $metadata); |
21 | 21 | } |
22 | 22 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | { |
13 | 13 | public function testGetPaths() |
14 | 14 | { |
15 | - $path = __DIR__ . '/_files'; |
|
15 | + $path = __DIR__.'/_files'; |
|
16 | 16 | |
17 | 17 | $locator = new DefaultFileLocator([$path]); |
18 | 18 | self::assertSame([$path], $locator->getPaths()); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | public function testUniquePaths() |
33 | 33 | { |
34 | - $path = __DIR__ . '/_files'; |
|
34 | + $path = __DIR__.'/_files'; |
|
35 | 35 | |
36 | 36 | $locator = new DefaultFileLocator([$path, $path]); |
37 | 37 | self::assertSame([$path], $locator->getPaths()); |
@@ -39,16 +39,16 @@ discard block |
||
39 | 39 | |
40 | 40 | public function testFindMappingFile() |
41 | 41 | { |
42 | - $path = __DIR__ . '/_files'; |
|
42 | + $path = __DIR__.'/_files'; |
|
43 | 43 | |
44 | 44 | $locator = new DefaultFileLocator([$path], '.yml'); |
45 | 45 | |
46 | - self::assertSame(__DIR__ . '/_files' . DIRECTORY_SEPARATOR . 'stdClass.yml', $locator->findMappingFile('stdClass')); |
|
46 | + self::assertSame(__DIR__.'/_files'.DIRECTORY_SEPARATOR.'stdClass.yml', $locator->findMappingFile('stdClass')); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | public function testFindMappingFileNotFound() |
50 | 50 | { |
51 | - $path = __DIR__ . '/_files'; |
|
51 | + $path = __DIR__.'/_files'; |
|
52 | 52 | |
53 | 53 | $locator = new DefaultFileLocator([$path], '.yml'); |
54 | 54 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function testGetAllClassNames() |
61 | 61 | { |
62 | - $path = __DIR__ . '/_files'; |
|
62 | + $path = __DIR__.'/_files'; |
|
63 | 63 | |
64 | 64 | $locator = new DefaultFileLocator([$path], '.yml'); |
65 | 65 | $allClasses = $locator->getAllClassNames(null); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | public function testGetAllClassNamesNonMatchingFileExtension() |
81 | 81 | { |
82 | - $path = __DIR__ . '/_files'; |
|
82 | + $path = __DIR__.'/_files'; |
|
83 | 83 | |
84 | 84 | $locator = new DefaultFileLocator([$path], '.xml'); |
85 | 85 | self::assertSame([], $locator->getAllClassNames('global')); |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | |
88 | 88 | public function testFileExists() |
89 | 89 | { |
90 | - $path = __DIR__ . '/_files'; |
|
90 | + $path = __DIR__.'/_files'; |
|
91 | 91 | |
92 | 92 | $locator = new DefaultFileLocator([$path], '.yml'); |
93 | 93 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | public function testGetPaths() |
15 | 15 | { |
16 | - $path = __DIR__ . '/_files'; |
|
16 | + $path = __DIR__.'/_files'; |
|
17 | 17 | $prefix = 'Foo'; |
18 | 18 | |
19 | 19 | $locator = new SymfonyFileLocator([$path => $prefix]); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function testGetPrefixes() |
27 | 27 | { |
28 | - $path = __DIR__ . '/_files'; |
|
28 | + $path = __DIR__.'/_files'; |
|
29 | 29 | $prefix = 'Foo'; |
30 | 30 | |
31 | 31 | $locator = new SymfonyFileLocator([$path => $prefix]); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | public function testFileExists() |
44 | 44 | { |
45 | - $path = __DIR__ . '/_files'; |
|
45 | + $path = __DIR__.'/_files'; |
|
46 | 46 | $prefix = 'Foo'; |
47 | 47 | |
48 | 48 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml'); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function testGetAllClassNames() |
57 | 57 | { |
58 | - $path = __DIR__ . '/_files'; |
|
58 | + $path = __DIR__.'/_files'; |
|
59 | 59 | $prefix = 'Foo'; |
60 | 60 | |
61 | 61 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml'); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function testInvalidCustomNamespaceSeparator() |
82 | 82 | { |
83 | - $path = __DIR__ . '/_files'; |
|
83 | + $path = __DIR__.'/_files'; |
|
84 | 84 | $prefix = 'Foo'; |
85 | 85 | |
86 | 86 | new SymfonyFileLocator([$path => $prefix], '.yml', null); |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | */ |
105 | 105 | public function testGetClassNamesWithCustomNsSeparator($separator, $dir) |
106 | 106 | { |
107 | - $path = __DIR__ . $dir; |
|
107 | + $path = __DIR__.$dir; |
|
108 | 108 | $prefix = 'Foo'; |
109 | 109 | |
110 | 110 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml', $separator); |
@@ -147,30 +147,30 @@ discard block |
||
147 | 147 | */ |
148 | 148 | public function testFindMappingFileWithCustomNsSeparator($separator, $dir, $files) |
149 | 149 | { |
150 | - $path = __DIR__ . $dir; |
|
150 | + $path = __DIR__.$dir; |
|
151 | 151 | $prefix = 'Foo'; |
152 | 152 | |
153 | 153 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml', $separator); |
154 | 154 | |
155 | 155 | foreach ($files as $filePath => $className) { |
156 | - self::assertSame(realpath($path . '/' . $filePath), realpath($locator->findMappingFile($className))); |
|
156 | + self::assertSame(realpath($path.'/'.$filePath), realpath($locator->findMappingFile($className))); |
|
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | 160 | |
161 | 161 | public function testFindMappingFile() |
162 | 162 | { |
163 | - $path = __DIR__ . '/_files'; |
|
163 | + $path = __DIR__.'/_files'; |
|
164 | 164 | $prefix = 'Foo'; |
165 | 165 | |
166 | 166 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml'); |
167 | 167 | |
168 | - self::assertSame(__DIR__ . '/_files/stdClass.yml', $locator->findMappingFile('Foo\\stdClass')); |
|
168 | + self::assertSame(__DIR__.'/_files/stdClass.yml', $locator->findMappingFile('Foo\\stdClass')); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | public function testFindMappingFileNotFound() |
172 | 172 | { |
173 | - $path = __DIR__ . '/_files'; |
|
173 | + $path = __DIR__.'/_files'; |
|
174 | 174 | $prefix = 'Foo'; |
175 | 175 | |
176 | 176 | $locator = new SymfonyFileLocator([$path => $prefix], '.yml'); |
@@ -184,13 +184,13 @@ discard block |
||
184 | 184 | { |
185 | 185 | // Low -> High |
186 | 186 | $prefixes = []; |
187 | - $prefixes[__DIR__ . '/_match_ns'] = 'Foo'; |
|
188 | - $prefixes[__DIR__ . '/_match_ns/Bar'] = 'Foo\\Bar'; |
|
187 | + $prefixes[__DIR__.'/_match_ns'] = 'Foo'; |
|
188 | + $prefixes[__DIR__.'/_match_ns/Bar'] = 'Foo\\Bar'; |
|
189 | 189 | |
190 | 190 | $locator = new SymfonyFileLocator($prefixes, '.yml'); |
191 | 191 | |
192 | 192 | self::assertSame( |
193 | - __DIR__ . '/_match_ns/Bar/barEntity.yml', |
|
193 | + __DIR__.'/_match_ns/Bar/barEntity.yml', |
|
194 | 194 | $locator->findMappingFile("Foo\\Bar\\barEntity") |
195 | 195 | ); |
196 | 196 | } |
@@ -198,13 +198,13 @@ discard block |
||
198 | 198 | public function testFindMappingFileMostSpecificNamespaceFirst() |
199 | 199 | { |
200 | 200 | $prefixes = []; |
201 | - $prefixes[__DIR__ . '/_match_ns/Bar'] = 'Foo\\Bar'; |
|
202 | - $prefixes[__DIR__ . '/_match_ns'] = 'Foo'; |
|
201 | + $prefixes[__DIR__.'/_match_ns/Bar'] = 'Foo\\Bar'; |
|
202 | + $prefixes[__DIR__.'/_match_ns'] = 'Foo'; |
|
203 | 203 | |
204 | 204 | $locator = new SymfonyFileLocator($prefixes, '.yml'); |
205 | 205 | |
206 | 206 | self::assertSame( |
207 | - __DIR__ . '/_match_ns/Bar/barEntity.yml', |
|
207 | + __DIR__.'/_match_ns/Bar/barEntity.yml', |
|
208 | 208 | $locator->findMappingFile("Foo\\Bar\\barEntity") |
209 | 209 | ); |
210 | 210 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | public function injectObjectManager(ObjectManager $objectManager, ClassMetadata $classMetadata) |
77 | 77 | { |
78 | 78 | if ($objectManager !== self::$objectManager) { |
79 | - throw new RuntimeException('Trying to use PersistentObject with different ObjectManager instances. ' . |
|
79 | + throw new RuntimeException('Trying to use PersistentObject with different ObjectManager instances. '. |
|
80 | 80 | 'Was PersistentObject::setObjectManager() called?'); |
81 | 81 | } |
82 | 82 | |
@@ -96,17 +96,17 @@ discard block |
||
96 | 96 | */ |
97 | 97 | private function set($field, $args) |
98 | 98 | { |
99 | - if ($this->cm->hasField($field) && ! $this->cm->isIdentifier($field)) { |
|
99 | + if ($this->cm->hasField($field) && !$this->cm->isIdentifier($field)) { |
|
100 | 100 | $this->$field = $args[0]; |
101 | 101 | } elseif ($this->cm->hasAssociation($field) && $this->cm->isSingleValuedAssociation($field)) { |
102 | 102 | $targetClass = $this->cm->getAssociationTargetClass($field); |
103 | - if (! ($args[0] instanceof $targetClass) && $args[0] !== null) { |
|
104 | - throw new InvalidArgumentException("Expected persistent object of type '" . $targetClass . "'"); |
|
103 | + if (!($args[0] instanceof $targetClass) && $args[0] !== null) { |
|
104 | + throw new InvalidArgumentException("Expected persistent object of type '".$targetClass."'"); |
|
105 | 105 | } |
106 | 106 | $this->$field = $args[0]; |
107 | 107 | $this->completeOwningSide($field, $targetClass, $args[0]); |
108 | 108 | } else { |
109 | - throw new BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getName() . "'"); |
|
109 | + throw new BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getName()."'"); |
|
110 | 110 | } |
111 | 111 | } |
112 | 112 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | return $this->$field; |
126 | 126 | } |
127 | 127 | |
128 | - throw new BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getName() . "'"); |
|
128 | + throw new BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getName()."'"); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -141,14 +141,14 @@ discard block |
||
141 | 141 | { |
142 | 142 | // add this object on the owning side as well, for obvious infinite recursion |
143 | 143 | // reasons this is only done when called on the inverse side. |
144 | - if (! $this->cm->isAssociationInverseSide($field)) { |
|
144 | + if (!$this->cm->isAssociationInverseSide($field)) { |
|
145 | 145 | return; |
146 | 146 | } |
147 | 147 | |
148 | 148 | $mappedByField = $this->cm->getAssociationMappedByTargetField($field); |
149 | 149 | $targetMetadata = self::$objectManager->getClassMetadata($targetClass); |
150 | 150 | |
151 | - $setter = ($targetMetadata->isCollectionValuedAssociation($mappedByField) ? 'add' : 'set') . $mappedByField; |
|
151 | + $setter = ($targetMetadata->isCollectionValuedAssociation($mappedByField) ? 'add' : 'set').$mappedByField; |
|
152 | 152 | $targetObject->$setter($this); |
153 | 153 | } |
154 | 154 | |
@@ -165,15 +165,15 @@ discard block |
||
165 | 165 | */ |
166 | 166 | private function add($field, $args) |
167 | 167 | { |
168 | - if (! $this->cm->hasAssociation($field) || ! $this->cm->isCollectionValuedAssociation($field)) { |
|
169 | - throw new BadMethodCallException('There is no method add' . $field . '() on ' . $this->cm->getName()); |
|
168 | + if (!$this->cm->hasAssociation($field) || !$this->cm->isCollectionValuedAssociation($field)) { |
|
169 | + throw new BadMethodCallException('There is no method add'.$field.'() on '.$this->cm->getName()); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | $targetClass = $this->cm->getAssociationTargetClass($field); |
173 | - if (! ($args[0] instanceof $targetClass)) { |
|
174 | - throw new InvalidArgumentException("Expected persistent object of type '" . $targetClass . "'"); |
|
173 | + if (!($args[0] instanceof $targetClass)) { |
|
174 | + throw new InvalidArgumentException("Expected persistent object of type '".$targetClass."'"); |
|
175 | 175 | } |
176 | - if (! ($this->$field instanceof Collection)) { |
|
176 | + if (!($this->$field instanceof Collection)) { |
|
177 | 177 | $this->$field = new ArrayCollection($this->$field ?: []); |
178 | 178 | } |
179 | 179 | $this->$field->add($args[0]); |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | return; |
194 | 194 | } |
195 | 195 | |
196 | - if (! self::$objectManager) { |
|
196 | + if (!self::$objectManager) { |
|
197 | 197 | throw new RuntimeException('No runtime object manager set. Call PersistentObject#setObjectManager().'); |
198 | 198 | } |
199 | 199 | |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | } elseif ($command === 'add') { |
224 | 224 | $this->add($field, $args); |
225 | 225 | } else { |
226 | - throw new BadMethodCallException('There is no method ' . $method . ' on ' . $this->cm->getName()); |
|
226 | + throw new BadMethodCallException('There is no method '.$method.' on '.$this->cm->getName()); |
|
227 | 227 | } |
228 | 228 | } |
229 | 229 | } |
@@ -34,7 +34,7 @@ |
||
34 | 34 | public function testGetParentClasses() |
35 | 35 | { |
36 | 36 | $classes = $this->reflectionService->getParentClasses(self::class); |
37 | - self::assertTrue(count($classes) === 0, 'The test class ' . self::class . ' should have no parents according to static reflection.'); |
|
37 | + self::assertTrue(count($classes) === 0, 'The test class '.self::class.' should have no parents according to static reflection.'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function testGetReflectionClass() |
@@ -38,13 +38,13 @@ |
||
38 | 38 | public function testGetParentClasses() |
39 | 39 | { |
40 | 40 | $classes = $this->reflectionService->getParentClasses(self::class); |
41 | - self::assertTrue(count($classes) >= 1, 'The test class ' . self::class . ' should have at least one parent.'); |
|
41 | + self::assertTrue(count($classes) >= 1, 'The test class '.self::class.' should have at least one parent.'); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | public function testGetParentClassesForAbsentClass() |
45 | 45 | { |
46 | 46 | $this->expectException(MappingException::class); |
47 | - $this->reflectionService->getParentClasses(__NAMESPACE__ . '\AbsentClass'); |
|
47 | + $this->reflectionService->getParentClasses(__NAMESPACE__.'\AbsentClass'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | public function testGetReflectionClass() |