Skip to content

Commit 8e07abb

Browse files
committed
strict types
1 parent 139745b commit 8e07abb

File tree

273 files changed

+551
-5
lines changed

Some content is hidden

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

273 files changed

+551
-5
lines changed

config/root.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
use Cone\Root\Http\Middleware\Authenticate;
46
use Cone\Root\Http\Middleware\TwoFactorAuthenticate;
57

database/factories/AuthCodeFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\AuthCode;

database/factories/EventFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Event;

database/factories/MediumFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Medium;

database/factories/MetaFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Meta;

database/factories/NotificationFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Notification;

database/factories/SettingFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Setting;

database/factories/TranslationFactory.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 Cone\Root\Database\Factories;
46

57
use Cone\Root\Models\Translation;

database/migrations/2020_01_01_000100_create_root_media_table.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
use Illuminate\Database\Migrations\Migration;
46
use Illuminate\Database\Schema\Blueprint;
57
use Illuminate\Support\Facades\Schema;

database/migrations/2020_07_01_000000_create_root_meta_data_table.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
use Illuminate\Database\Migrations\Migration;
46
use Illuminate\Database\Schema\Blueprint;
57
use Illuminate\Support\Facades\Schema;

0 commit comments

Comments
 (0)