File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 5
5
use Illuminate \Console \Command ;
6
6
use Illuminate \Container \Container ;
7
7
use Illuminate \Database \Migrations \Migration ;
8
+ use Illuminate \Log \Logger ;
8
9
9
10
abstract class Patch extends Migration
10
11
{
@@ -13,24 +14,24 @@ abstract class Patch extends Migration
13
14
*
14
15
* @var \Illuminate\Console\Command
15
16
*/
16
- protected $ command ;
17
+ protected Command $ command ;
17
18
18
19
/**
19
20
* The container instance.
20
21
*
21
22
* @var \Illuminate\Container\Container
22
23
*/
23
- protected $ container ;
24
+ protected Container $ container ;
24
25
25
26
/**
26
27
* Logger.
27
28
*
28
29
* @var \Illuminate\Log\Logger
29
30
*/
30
- protected $ logger ;
31
+ protected Logger $ logger ;
31
32
32
33
/**
33
- * Enables, if supported, wrapping the migration within a transaction.
34
+ * Enables, if supported, wrapping the patch within a transaction.
34
35
*
35
36
* @var bool
36
37
*/
You can’t perform that action at this time.
0 commit comments