Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
askdkc authored and github-actions[bot] committed Jul 7, 2023
1 parent 179af98 commit d9a7196
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/LanguageSwitcherInstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

$this->assertFileExists(base_path('app/Http/Middleware/Localization.php'));
$webfile = file_get_contents(base_path('routes/web.php'));
$this->assertStringContainsString("// Language Switcher Route 言語切替用ルートだよ", $webfile);
$this->assertStringContainsString('// Language Switcher Route 言語切替用ルートだよ', $webfile);
});
2 changes: 1 addition & 1 deletion tests/NoDebugCommandLeftTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

test('globals')
->expect(['dd', 'dump','ray'])
->expect(['dd', 'dump', 'ray'])
->not->toBeUsed();
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protected function setUp(): void
}

// テスト用のファイル作成(web.php)
if (!is_file(__DIR__.'/../vendor/orchestra/testbench-core/laravel/routes/web.php')) {
if (! is_file(__DIR__.'/../vendor/orchestra/testbench-core/laravel/routes/web.php')) {
copy(__DIR__.'/web.php.stub', __DIR__.'/../vendor/orchestra/testbench-core/laravel/routes/web.php');
}

Expand All @@ -28,7 +28,7 @@ protected function setUp(): void
}

// テスト用のファイル作成(Kernel.php)
if (!is_file(__DIR__.'/../vendor/orchestra/testbench-core/laravel/app/Http/Kernel.php')) {
if (! is_file(__DIR__.'/../vendor/orchestra/testbench-core/laravel/app/Http/Kernel.php')) {
copy(__DIR__.'/Kernel.php.stub', __DIR__.'/../vendor/orchestra/testbench-core/laravel/app/Http/Kernel.php');
}

Expand Down

0 comments on commit d9a7196

Please sign in to comment.