Skip to content

Commit ef16ad0

Browse files
Merge pull request #123 from TheDragonCode/code-style-zz7pnb3
The code style has been fixed
2 parents f990058 + 32298f1 commit ef16ad0

File tree

8 files changed

+16
-0
lines changed

8 files changed

+16
-0
lines changed

app/Commands/ReadCommand.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 DragonCode\GithubNotifications\Commands;
46

57
use DragonCode\GithubNotifications\Factories\ClientFactory;

bootstrap/app.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 LaravelZero\Framework\Application;
46

57
return Application::configure(

config/app.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
return [
46
/*
57
|--------------------------------------------------------------------------

config/bots.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
return [
46
'accounts' => [
57
9919, // GitHub

config/commands.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\Console\Scheduling\ScheduleFinishCommand;
46
use Illuminate\Console\Scheduling\ScheduleListCommand;
57
use Illuminate\Console\Scheduling\ScheduleRunCommand;

tests/Pest.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 LaravelZero\Framework\Testing\TestCase;
46

57
uses(TestCase::class)->in('Unit');

tests/Unit/BinaryTest.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\Support\Facades\Process;
46

57
it('checks application launch', function () {

tests/Unit/SourceTest.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\Support\Facades\Process;
46

57
it('checks application launch', function () {

0 commit comments

Comments
 (0)