Skip to content

Commit 553a8cf

Browse files
committed
Apply fixes from StyleCI
1 parent a190726 commit 553a8cf

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

packages/framework/tests/Unit/ServeCommandOptionsUnitTest.php

+13-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
namespace Hyde\Framework\Testing\Unit;
66

77
use Mockery;
8-
use Hyde\Hyde;
98
use Hyde\Testing\UnitTestCase;
109
use Hyde\Foundation\HydeKernel;
1110
use Illuminate\Console\OutputStyle;
@@ -207,13 +206,22 @@ public function testWithOpenArgument()
207206
{
208207
HydeKernel::setInstance(new HydeKernel());
209208

210-
$command = new class(['open' => true]) extends ServeCommandMock {
209+
$command = new class(['open' => true]) extends ServeCommandMock
210+
{
211211
public bool $openInBrowserCalled = false;
212212

213213
// Void unrelated methods
214-
protected function configureOutput(): void {}
215-
protected function printStartMessage(): void {}
216-
protected function runServerProcess(string $command): void {}
214+
protected function configureOutput(): void
215+
{
216+
}
217+
218+
protected function printStartMessage(): void
219+
{
220+
}
221+
222+
protected function runServerProcess(string $command): void
223+
{
224+
}
217225

218226
protected function openInBrowser(): void
219227
{

0 commit comments

Comments
 (0)