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 @@ -355,12 +355,14 @@ protected function getDefaultPostProcessor()
355
355
/** @inheritdoc */
356
356
protected function getDefaultQueryGrammar ()
357
357
{
358
+ // Argument added in Laravel 12
358
359
return new Query \Grammar ($ this );
359
360
}
360
361
361
362
/** @inheritdoc */
362
363
protected function getDefaultSchemaGrammar ()
363
364
{
365
+ // Argument added in Laravel 12
364
366
return new Schema \Grammar ($ this );
365
367
}
366
368
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