Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Oct 5, 2018
1 parent 67c6150 commit 8b50e72
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/bootstrap.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


require __DIR__ . '/../vendor/autoload.php'; require __DIR__ . '/../vendor/autoload.php';
Expand Down
1 change: 1 addition & 0 deletions app/forms/FormFactory.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Forms; namespace App\Forms;
Expand Down
1 change: 1 addition & 0 deletions app/forms/SignInFormFactory.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Forms; namespace App\Forms;
Expand Down
1 change: 1 addition & 0 deletions app/forms/SignUpFormFactory.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Forms; namespace App\Forms;
Expand Down
1 change: 1 addition & 0 deletions app/model/UserManager.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Model; namespace App\Model;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/BasePresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/Error4xxPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/ErrorPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/HomepagePresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/SignPresenter.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Presenters; namespace App\Presenters;
Expand Down
1 change: 1 addition & 0 deletions app/presenters/templates/Error/503.phtml
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


header('HTTP/1.1 503 Service Unavailable'); header('HTTP/1.1 503 Service Unavailable');
Expand Down
1 change: 1 addition & 0 deletions app/router/RouterFactory.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


namespace App\Router; namespace App\Router;
Expand Down
1 change: 1 addition & 0 deletions bin/create-user.php
@@ -1,4 +1,5 @@
<?php <?php

declare(strict_types=1); declare(strict_types=1);


if (!isset($_SERVER['argv'][3])) { if (!isset($_SERVER['argv'][3])) {
Expand Down

0 comments on commit 8b50e72

Please sign in to comment.