Skip to content

Commit e02bcea

Browse files
author
Dominik Liebler
committed
put declare() in the same line as the php tag
1 parent 2afed49 commit e02bcea

File tree

165 files changed

+165
-330
lines changed

Some content is hidden

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

165 files changed

+165
-330
lines changed

Behavioral/ChainOfResponsibilities/Handler.php

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

43
namespace DesignPatterns\Behavioral\ChainOfResponsibilities;
54

Behavioral/ChainOfResponsibilities/Responsible/HttpInMemoryCacheHandler.php

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

43
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible;
54

Behavioral/ChainOfResponsibilities/Responsible/SlowDatabaseHandler.php

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

43
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Responsible;
54

Behavioral/ChainOfResponsibilities/Tests/ChainTest.php

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

43
namespace DesignPatterns\Behavioral\ChainOfResponsibilities\Tests;
54

Behavioral/Command/AddMessageDateCommand.php

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

43
namespace DesignPatterns\Behavioral\Command;
54

Behavioral/Command/Command.php

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

43
namespace DesignPatterns\Behavioral\Command;
54

Behavioral/Command/HelloCommand.php

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

43
namespace DesignPatterns\Behavioral\Command;
54

Behavioral/Command/Invoker.php

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

43
namespace DesignPatterns\Behavioral\Command;
54

Behavioral/Command/Receiver.php

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

43
namespace DesignPatterns\Behavioral\Command;
54

Behavioral/Command/Tests/CommandTest.php

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

43
namespace DesignPatterns\Behavioral\Command\Tests;
54

0 commit comments

Comments
 (0)