File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 11parameters :
22 ignoreErrors :
3+ -
4+ message : " #^Class MongoDB\\\\ Laravel\\\\ Query\\\\ Grammar does not have a constructor and must be instantiated without any parameters\\ .$#"
5+ count : 1
6+ path : src/Connection.php
7+
8+ -
9+ message : " #^Class MongoDB\\\\ Laravel\\\\ Schema\\\\ Grammar does not have a constructor and must be instantiated without any parameters\\ .$#"
10+ count : 1
11+ path : src/Connection.php
12+
313 -
414 message : " #^Access to an undefined property Illuminate\\\\ Container\\\\ Container\\ :\\ :\\ $config\\ .$#"
515 count : 3
Original file line number Diff line number Diff line change @@ -355,12 +355,14 @@ protected function getDefaultPostProcessor()
355355 /** @inheritdoc */
356356 protected function getDefaultQueryGrammar ()
357357 {
358+ // Argument added in Laravel 12
358359 return new Query \Grammar ($ this );
359360 }
360361
361362 /** @inheritdoc */
362363 protected function getDefaultSchemaGrammar ()
363364 {
365+ // Argument added in Laravel 12
364366 return new Schema \Grammar ($ this );
365367 }
366368
Original file line number Diff line number Diff line change 44
55namespace MongoDB \Laravel \Schema ;
66
7+ use Closure ;
78use Illuminate \Database \Connection ;
89use Illuminate \Database \Schema \Blueprint as SchemaBlueprint ;
910use MongoDB \Collection ;
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public function tearDown(): void
3535 Photo::truncate ();
3636 Label::truncate ();
3737 Skill::truncate ();
38+ Soft::truncate ();
3839
3940 parent ::tearDown ();
4041 }
You can’t perform that action at this time.
0 commit comments