Skip to content

Commit ee70eae

Browse files
mynetxclaude
andcommitted
Fix code style
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 40a3375 commit ee70eae

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/Commands/StaticSiteServe.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class StaticSiteServe extends Command
3333
/**
3434
* The list of requests being handled and their start time.
3535
*
36-
* @var array<int, \Illuminate\Support\Carbon>
36+
* @var array<int, Carbon>
3737
*/
3838
protected $requestsPool;
3939

@@ -68,7 +68,7 @@ public function handle()
6868
* Start a new server process.
6969
*
7070
* @param bool $hasEnvironment
71-
* @return \Symfony\Component\Process\Process
71+
* @return Process
7272
*/
7373
protected function startProcess()
7474
{
@@ -208,7 +208,7 @@ protected function handleProcessOutput()
208208
* Get the date from the given PHP server output.
209209
*
210210
* @param string $line
211-
* @return \Illuminate\Support\Carbon
211+
* @return Carbon
212212
*/
213213
protected function getDateFromLine($line)
214214
{

tests/TestCase.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
use Illuminate\Filesystem\Filesystem;
66
use Orchestra\Testbench\TestCase as OrchestraTestCase;
7+
use Statamic\Providers\StatamicServiceProvider;
78
use Statamic\Statamic;
9+
use Wilderborn\Partyline\ServiceProvider;
810

911
class TestCase extends OrchestraTestCase
1012
{
@@ -14,8 +16,8 @@ class TestCase extends OrchestraTestCase
1416
protected function getPackageProviders($app)
1517
{
1618
return [
17-
\Statamic\Providers\StatamicServiceProvider::class,
18-
\Wilderborn\Partyline\ServiceProvider::class,
19+
StatamicServiceProvider::class,
20+
ServiceProvider::class,
1921
\Statamic\StaticSite\ServiceProvider::class,
2022
];
2123
}

0 commit comments

Comments
 (0)