Skip to content

Commit 6144823

Browse files
committed
Added declare(strict_types=1)
1 parent beb5ba8 commit 6144823

File tree

62 files changed

+124
-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.

62 files changed

+124
-0
lines changed

src/Application/Application.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 CzProject\PhpCli\Application;
46

57
use CzProject\PhpCli\ApplicationException;

src/Application/ApplicationRequest.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 CzProject\PhpCli\Application;
46

57

src/Application/CommandArgument.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 CzProject\PhpCli\Application;
46

57
use CzProject\PhpCli\Parameters\Definition;

src/Application/CommandOption.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 CzProject\PhpCli\Application;
46

57
use CzProject\PhpCli\ApplicationException;

src/Application/CommandParameters.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 CzProject\PhpCli\Application;
46

57
use CzProject\PhpCli\Types;

src/Application/ICommand.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 CzProject\PhpCli\Application;
46

57
use CzProject\PhpCli\Console;

src/Colors.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 CzProject\PhpCli;
46

57

src/Console.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 CzProject\PhpCli;
46

57

src/ConsoleFactory.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 CzProject\PhpCli;
46

57
use CzProject\PhpCli\Inputs;

src/Helpers.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 CzProject\PhpCli;
46

57

0 commit comments

Comments
 (0)