Skip to content

Commit bdb3258

Browse files
A strict typification has been added
1 parent fc6799c commit bdb3258

File tree

52 files changed

+104
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+104
-0
lines changed

config/deploy-operations.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
return [
46
/*
57
|--------------------------------------------------------------------------

src/Console/Install.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Make.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Operations.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Refresh.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Reset.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Rollback.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Console/Status.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Console;
46

57
use DragonCode\LaravelDeployOperations\Constants\Names;

src/Constants/Names.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations\Constants;
46

57
class Names

src/Operation.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace DragonCode\LaravelDeployOperations;
46

57
use DragonCode\LaravelDeployOperations\Concerns\Artisan;

0 commit comments

Comments
 (0)