@@ -225,7 +225,7 @@ public function testAddEntityField(string $sourceFilename, string $propertyName,
225225
226226 private function runAddEntityFieldTests (string $ source , string $ propertyName , array $ fieldOptions , string $ expected ): void
227227 {
228- $ manipulator = new ClassSourceManipulator ($ source , false , true );
228+ $ manipulator = new ClassSourceManipulator ($ source , false );
229229 $ manipulator ->addEntityField ($ propertyName , $ fieldOptions );
230230
231231 $ this ->assertSame ($ expected , $ manipulator ->getSourceCode ());
@@ -304,7 +304,7 @@ public function testAddManyToOneRelation(string $sourceFilename, $expectedSource
304304
305305 public function runAddManyToOneRelationTests (string $ source , string $ expected , RelationManyToOne $ manyToOne ): void
306306 {
307- $ manipulator = new ClassSourceManipulator ($ source , false , true );
307+ $ manipulator = new ClassSourceManipulator ($ source , false );
308308 $ manipulator ->addManyToOneRelation ($ manyToOne );
309309
310310 $ this ->assertSame ($ expected , $ manipulator ->getSourceCode ());
@@ -402,7 +402,7 @@ public function testAddOneToManyRelation(string $sourceFilename, string $expecte
402402
403403 private function runAddOneToManyRelationTests (string $ source , string $ expected , RelationOneToMany $ oneToMany ): void
404404 {
405- $ manipulator = new ClassSourceManipulator ($ source , false , true );
405+ $ manipulator = new ClassSourceManipulator ($ source , false );
406406 $ manipulator ->addOneToManyRelation ($ oneToMany );
407407
408408 $ this ->assertSame ($ expected , $ manipulator ->getSourceCode ());
@@ -463,7 +463,7 @@ public function testAddManyToManyRelation(string $sourceFilename, $expectedSourc
463463
464464 private function runAddManyToManyRelationTest (string $ source , string $ expected , RelationManyToMany $ manyToMany ): void
465465 {
466- $ manipulator = new ClassSourceManipulator ($ source , false , true );
466+ $ manipulator = new ClassSourceManipulator ($ source , false );
467467 $ manipulator ->addManyToManyRelation ($ manyToMany );
468468
469469 $ this ->assertSame ($ expected , $ manipulator ->getSourceCode ());
@@ -522,7 +522,7 @@ public function testAddOneToOneRelation(string $sourceFilename, $expectedSourceF
522522
523523 private function runAddOneToOneRelation (string $ source , string $ expected , RelationOneToOne $ oneToOne ): void
524524 {
525- $ manipulator = new ClassSourceManipulator ($ source , false , true );
525+ $ manipulator = new ClassSourceManipulator ($ source , false );
526526 $ manipulator ->addOneToOneRelation ($ oneToOne );
527527
528528 $ this ->assertSame ($ expected , $ manipulator ->getSourceCode ());
0 commit comments