Skip to content

Commit 90f93be

Browse files
committed
add attribute type property
1 parent 8283da7 commit 90f93be

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Patch.php

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Illuminate\Console\Command;
66
use Illuminate\Container\Container;
77
use Illuminate\Database\Migrations\Migration;
8+
use Illuminate\Log\Logger;
89

910
abstract class Patch extends Migration
1011
{
@@ -13,24 +14,24 @@ abstract class Patch extends Migration
1314
*
1415
* @var \Illuminate\Console\Command
1516
*/
16-
protected $command;
17+
protected Command $command;
1718

1819
/**
1920
* The container instance.
2021
*
2122
* @var \Illuminate\Container\Container
2223
*/
23-
protected $container;
24+
protected Container $container;
2425

2526
/**
2627
* Logger.
2728
*
2829
* @var \Illuminate\Log\Logger
2930
*/
30-
protected $logger;
31+
protected Logger $logger;
3132

3233
/**
33-
* Enables, if supported, wrapping the migration within a transaction.
34+
* Enables, if supported, wrapping the patch within a transaction.
3435
*
3536
* @var bool
3637
*/

0 commit comments

Comments
 (0)