Skip to content

Commit

Permalink
Init strict_types=1
Browse files Browse the repository at this point in the history
  • Loading branch information
s-damian committed Mar 3, 2024
1 parent b735d70 commit 812f0f5
Show file tree
Hide file tree
Showing 18 changed files with 35 additions and 1 deletion.
2 changes: 2 additions & 0 deletions boot/app.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Dotenv\Dotenv;
use DamianPhp\Foundation\Application;

Expand Down
2 changes: 2 additions & 0 deletions boot/autoload.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Register the Auto Loader.
Expand Down
2 changes: 2 additions & 0 deletions config/app.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| App configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/boot.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Application startup configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/cookie.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use DamianPhp\Support\Facades\Server;

/*
Expand Down
2 changes: 2 additions & 0 deletions config/database.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Database configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/dev.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Configuration for the development.
Expand Down
2 changes: 2 additions & 0 deletions config/email.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Email addresses configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/lang.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Language configuration: Localization and internationalization.
Expand Down
2 changes: 2 additions & 0 deletions config/mail.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Mail configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/path.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Paths configuration.
Expand Down
2 changes: 1 addition & 1 deletion config/routing.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use DamianPhp\Support\Facades\Server;
declare(strict_types=1);

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions config/security.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Security configuration.
Expand Down
2 changes: 2 additions & 0 deletions config/services.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Services configuration.
Expand Down
2 changes: 2 additions & 0 deletions routes/list.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use DamianPhp\Support\Helper;
use DamianPhp\Support\Facades\Json;
use DamianPhp\Support\Facades\Input;
Expand Down
2 changes: 2 additions & 0 deletions tests/AppBoot.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests;

use Dotenv\Dotenv;
Expand Down
2 changes: 2 additions & 0 deletions tests/Feature/FeatureBaseTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests\Feature;

use Tests\AppBoot;
Expand Down
2 changes: 2 additions & 0 deletions tests/Feature/Http/Controllers/Front/PageControllerTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests\FeatureHttp\Controllers\Front;

use Tests\Feature\FeatureBaseTest;
Expand Down

0 comments on commit 812f0f5

Please sign in to comment.