diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2019-11-10 23:26:23 +0100 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2019-11-11 00:05:41 +0100 |
commit | 68afc74b03f83bb072944911c15af60433280ace (patch) | |
tree | 1217a5cbfa75c01d35e8e0d743da379725816bf2 /src/Database | |
parent | b878740f80ce7cfe2a0bc53956e3f7e4e0aa2f78 (diff) |
Formatting to follow PSR-12
Diffstat (limited to 'src/Database')
-rw-r--r-- | src/Database/Migration/Migrate.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Database/Migration/Migrate.php b/src/Database/Migration/Migrate.php index 214903e4..a0d5d4b0 100644 --- a/src/Database/Migration/Migrate.php +++ b/src/Database/Migration/Migrate.php @@ -11,8 +11,11 @@ use Illuminate\Support\Str; class Migrate { - const UP = 'up'; - const DOWN = 'down'; + /** @var string */ + public const UP = 'up'; + + /** @var string */ + public const DOWN = 'down'; /** @var Application */ protected $app; |