Skip to content

Commit 49b3e9f

Browse files
committed
Use strict types.
1 parent a9f4822 commit 49b3e9f

24 files changed

+25
-1
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"license": "MIT",
1111
"require": {
1212
"php": ">=7.1.0",
13+
"ext-json": "*",
1314
"setbased/exception": "^1.0.0",
1415
"setbased/helper-code-store-mysql": "^2.0.0",
1516
"setbased/php-stratum": "^0.9.64",

src/Application/AuditApplication.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Application;
45

src/Audit/AlterAuditTable.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Audit;
45

src/Audit/Audit.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Audit;
45

src/Audit/Diff.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Audit;
45

src/AuditTable.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit;
45

src/Command/AlterAuditTableCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Command;
45

src/Command/AuditCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Command;
45

src/Command/BaseCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Command;
45

src/Command/DiffCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace SetBased\Audit\Command;
45

0 commit comments

Comments
 (0)