File tree 4 files changed +14
-0
lines changed
4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1
1
parameters :
2
2
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
+
3
13
-
4
14
message : " #^Access to an undefined property Illuminate\\\\ Container\\\\ Container\\ :\\ :\\ $config\\ .$#"
5
15
count : 3
Original file line number Diff line number Diff line change @@ -345,12 +345,14 @@ protected function getDefaultPostProcessor()
345
345
/** @inheritdoc */
346
346
protected function getDefaultQueryGrammar ()
347
347
{
348
+ // Argument added in Laravel 12
348
349
return new Query \Grammar ($ this );
349
350
}
350
351
351
352
/** @inheritdoc */
352
353
protected function getDefaultSchemaGrammar ()
353
354
{
355
+ // Argument added in Laravel 12
354
356
return new Schema \Grammar ($ this );
355
357
}
356
358
Original file line number Diff line number Diff line change 4
4
5
5
namespace MongoDB \Laravel \Schema ;
6
6
7
+ use Closure ;
7
8
use Illuminate \Database \Connection ;
8
9
use Illuminate \Database \Schema \Blueprint as SchemaBlueprint ;
9
10
use MongoDB \Collection ;
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public function tearDown(): void
35
35
Photo::truncate ();
36
36
Label::truncate ();
37
37
Skill::truncate ();
38
+ Soft::truncate ();
38
39
39
40
parent ::tearDown ();
40
41
}
You can’t perform that action at this time.
0 commit comments