@@ -87,7 +87,7 @@ public function testFluentMutators(): void
8787 $ commandTester = new CommandTester (new GenerateTypesCommand ());
8888 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
8989
90- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
90+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
9191 $ this ->assertStringContainsString (<<<'PHP'
9292 public function setUrl(?string $url): self
9393 {
@@ -126,7 +126,7 @@ public function testDoNotGenerateAccessorMethods(): void
126126 $ commandTester = new CommandTester (new GenerateTypesCommand ());
127127 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
128128
129- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
129+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
130130 $ this ->assertStringNotContainsString ('function get ' , $ person );
131131 $ this ->assertStringNotContainsString ('function set ' , $ person );
132132 $ this ->assertStringNotContainsString ('function add ' , $ person );
@@ -143,7 +143,7 @@ public function testImplicitAndExplicitPropertyInheritance(): void
143143 $ commandTester = new CommandTester (new GenerateTypesCommand ());
144144 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
145145
146- $ creativeWork = file_get_contents ("$ outputDir/AppBundle /Entity/CreativeWork.php " );
146+ $ creativeWork = file_get_contents ("$ outputDir/App /Entity/CreativeWork.php " );
147147 $ this ->assertStringContainsString ('class CreativeWork extends Thing ' , $ creativeWork );
148148 $ this ->assertStringContainsString ('private $copyrightYear; ' , $ creativeWork );
149149 $ this ->assertStringContainsString ('function getCopyrightYear( ' , $ creativeWork );
@@ -152,7 +152,7 @@ public function testImplicitAndExplicitPropertyInheritance(): void
152152 $ this ->assertStringNotContainsString ('function getName( ' , $ creativeWork );
153153 $ this ->assertStringNotContainsString ('function setName( ' , $ creativeWork );
154154
155- $ webPage = file_get_contents ("$ outputDir/AppBundle /Entity/WebPage.php " );
155+ $ webPage = file_get_contents ("$ outputDir/App /Entity/WebPage.php " );
156156 $ this ->assertStringContainsString ('class WebPage extends CreativeWork ' , $ webPage );
157157 $ this ->assertStringContainsString ('private $mainEntity; ' , $ webPage );
158158 $ this ->assertStringContainsString ('function getMainEntity( ' , $ webPage );
@@ -175,7 +175,7 @@ public function testReadableWritable(): void
175175 $ commandTester = new CommandTester (new GenerateTypesCommand ());
176176 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
177177
178- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
178+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
179179 $ this ->assertStringContainsString ('private $sameAs; ' , $ person );
180180 $ this ->assertStringContainsString ('public function getId( ' , $ person );
181181 $ this ->assertStringNotContainsString ('function setId( ' , $ person );
@@ -197,7 +197,7 @@ public function testGeneratedId(): void
197197 $ commandTester = new CommandTester (new GenerateTypesCommand ());
198198 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
199199
200- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
200+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
201201
202202 $ this ->assertStringContainsString (<<<'PHP'
203203 /**
@@ -232,7 +232,7 @@ public function testNonGeneratedId(): void
232232 $ commandTester = new CommandTester (new GenerateTypesCommand ());
233233 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
234234
235- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
235+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
236236
237237 $ this ->assertStringContainsString (<<<'PHP'
238238 /**
@@ -266,7 +266,7 @@ public function testGeneratedUuid(): void
266266 $ commandTester = new CommandTester (new GenerateTypesCommand ());
267267 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
268268
269- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
269+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
270270
271271 $ this ->assertStringContainsString (<<<'PHP'
272272 /**
@@ -302,7 +302,7 @@ public function testNonGeneratedUuid(): void
302302 $ commandTester = new CommandTester (new GenerateTypesCommand ());
303303 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
304304
305- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
305+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
306306
307307 $ this ->assertStringContainsString (<<<'PHP'
308308 /**
@@ -337,7 +337,7 @@ public function testDoNotGenerateId(): void
337337 $ commandTester = new CommandTester (new GenerateTypesCommand ());
338338 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
339339
340- $ person = file_get_contents ("$ outputDir/AppBundle /Entity/Person.php " );
340+ $ person = file_get_contents ("$ outputDir/App /Entity/Person.php " );
341341
342342 $ this ->assertStringNotContainsString ('$id ' , $ person );
343343 $ this ->assertStringNotContainsString ('function getId ' , $ person );
@@ -391,7 +391,7 @@ public function testGeneratedEnum(): void
391391 $ commandTester = new CommandTester (new GenerateTypesCommand ());
392392 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
393393
394- $ gender = file_get_contents ("$ outputDir/AppBundle /Enum/GenderType.php " );
394+ $ gender = file_get_contents ("$ outputDir/App /Enum/GenderType.php " );
395395
396396 $ this ->assertStringContainsString (<<<'PHP'
397397 /**
@@ -414,7 +414,7 @@ public function testSupersededProperties(): void
414414 $ commandTester = new CommandTester (new GenerateTypesCommand ());
415415 $ this ->assertEquals (0 , $ commandTester ->execute (['output ' => $ outputDir , 'config ' => $ config ]));
416416
417- $ creativeWork = file_get_contents ("$ outputDir/AppBundle /Entity/CreativeWork.php " );
417+ $ creativeWork = file_get_contents ("$ outputDir/App /Entity/CreativeWork.php " );
418418
419419 $ this ->assertStringContainsString (<<<'PHP'
420420 /**
0 commit comments