@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $locator->expects($this->once()) |
37 | 37 | ->method('findMappingFile') |
38 | 38 | ->with($this->equalTo('stdClass')) |
39 | - ->will($this->returnValue(__DIR__ . '/_files/stdClass.yml')); |
|
39 | + ->will($this->returnValue(__DIR__.'/_files/stdClass.yml')); |
|
40 | 40 | |
41 | 41 | $driver = new TestFileDriver($locator); |
42 | 42 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $locator->expects($this->once()) |
52 | 52 | ->method('findMappingFile') |
53 | 53 | ->with($this->equalTo('stdClass')) |
54 | - ->will($this->returnValue(__DIR__ . '/_files/stdClass.yml')); |
|
54 | + ->will($this->returnValue(__DIR__.'/_files/stdClass.yml')); |
|
55 | 55 | |
56 | 56 | $driver = new TestFileDriver($locator); |
57 | 57 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | public function testNonLocatorFallback() |
134 | 134 | { |
135 | - $driver = new TestFileDriver(__DIR__ . '/_files', '.yml'); |
|
135 | + $driver = new TestFileDriver(__DIR__.'/_files', '.yml'); |
|
136 | 136 | self::assertTrue($driver->isTransient('stdClass2')); |
137 | 137 | self::assertFalse($driver->isTransient('stdClass')); |
138 | 138 | } |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | { |
142 | 142 | $locator = $this->createMock(FileLocator::class); |
143 | 143 | $locator->expects($this->any())->method('getFileExtension')->will($this->returnValue('.yml')); |
144 | - $locator->expects($this->any())->method('getPaths')->will($this->returnValue([__DIR__ . '/_files'])); |
|
144 | + $locator->expects($this->any())->method('getPaths')->will($this->returnValue([__DIR__.'/_files'])); |
|
145 | 145 | return $locator; |
146 | 146 | } |
147 | 147 | } |
@@ -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 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | private function getManagerFactory() |
81 | 81 | { |
82 | - return function () { |
|
82 | + return function() { |
|
83 | 83 | $mock = $this->createMock(ObjectManager::class); |
84 | 84 | $driver = $this->createMock(MappingDriver::class); |
85 | 85 | $metadata = $this->createMock(ClassMetadata::class); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | protected function getService($name) |
120 | 120 | { |
121 | - if (! isset($this->services[$name])) { |
|
121 | + if (!isset($this->services[$name])) { |
|
122 | 122 | $this->services[$name] = call_user_func($this->managerFactory); |
123 | 123 | } |
124 | 124 |
@@ -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) |