Skip to content

Commit 149970f

Browse files
committed
Apply fixes from StyleCI
1 parent 97a7055 commit 149970f

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

packages/framework/src/Concerns/Internal/AssetManager.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@
66

77
/**
88
* Offloads asset related methods for the Hyde Facade.
9-
* @deprecated version 0.41.x - Use the Asset facade instead.
109
*
10+
* @deprecated version 0.41.x - Use the Asset facade instead.
1111
* @see \Hyde\Framework\Hyde
1212
*/
1313
trait AssetManager
1414
{
1515
/**
1616
* Get the asset service instance.
17-
*
17+
*
1818
* @deprecated version 0.41.x - Use the Asset facade instead.
19+
*
1920
* @return \Hyde\Framework\Contracts\AssetServiceContract
2021
*/
2122
public static function assetManager(): AssetServiceContract
@@ -25,6 +26,7 @@ public static function assetManager(): AssetServiceContract
2526

2627
/**
2728
* Return the Hyde stylesheet.
29+
*
2830
* @deprecated version 0.41.x - Use the Asset facade instead.
2931
*/
3032
public static function styles(): string
@@ -34,6 +36,7 @@ public static function styles(): string
3436

3537
/**
3638
* Return the Hyde scripts.
39+
*
3740
* @deprecated version 0.41.x - Use the Asset facade instead.
3841
*/
3942
public static function scripts(): string

packages/framework/src/Facades/Asset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ protected static function getFacadeAccessor(): string
2121
{
2222
return AssetServiceContract::class;
2323
}
24-
}
24+
}

packages/framework/src/Services/AssetService.php

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public function constructCdnPath(string $file): string
3939

4040
/**
4141
* Alias for constructCdnPath.
42+
*
4243
* @since v0.41.x
4344
*/
4445
public function cdnLink(string $file): string

packages/framework/tests/Unit/AssetFacadeTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3+
use Hyde\Framework\Contracts\AssetServiceContract;
4+
use Hyde\Framework\Facades\Asset;
35
use Hyde\Framework\Services\AssetService;
46
use Hyde\Testing\TestCase;
5-
use Hyde\Framework\Facades\Asset;
6-
use Hyde\Framework\Contracts\AssetServiceContract;
77

88
/**
99
* @covers \Hyde\Framework\Facades\Asset
@@ -25,4 +25,4 @@ public function test_asset_facade_can_call_methods_on_the_asset_service()
2525
$service = new AssetService();
2626
$this->assertEquals($service->version(), Asset::version());
2727
}
28-
}
28+
}

packages/framework/tests/Unit/Views/ScriptsComponentViewTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class ScriptsComponentViewTest extends TestCase
1414
{
15-
protected ?string $mockCurrentPage = null;
15+
protected ?string $mockCurrentPage = null;
1616

1717
protected function renderTestView(): string
1818
{
@@ -35,13 +35,11 @@ public function test_component_has_link_to_app_js_file_when_it_exists()
3535
unlink(Hyde::path('_media/app.js'));
3636
}
3737

38-
3938
public function test_component_does_not_render_link_to_app_js_when_it_does_not_exist()
4039
{
4140
$this->assertStringNotContainsString('<script defer src="media/app.js"', $this->renderTestView());
4241
}
4342

44-
4543
public function test_component_uses_relative_path_to_app_js_file_for_nested_pages()
4644
{
4745
touch(Hyde::path('_media/app.js'));
@@ -98,7 +96,7 @@ public function test_cdn_link_uses_the_correct_version_defined_in_the_asset_mana
9896
{
9997
$expectedVersion = (new AssetService)->version();
10098
$this->assertStringContainsString(
101-
'https://cdn.jsdelivr.net/npm/hydefront@' . $expectedVersion . '/dist/hyde.js',
99+
'https://cdn.jsdelivr.net/npm/hydefront@'.$expectedVersion.'/dist/hyde.js',
102100
$this->renderTestView()
103101
);
104102
}

packages/framework/tests/Unit/Views/StylesComponentViewTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class StylesComponentViewTest extends TestCase
1414
{
15-
protected ?string $mockCurrentPage = null;
15+
protected ?string $mockCurrentPage = null;
1616

1717
protected function renderTestView(): string
1818
{
@@ -94,7 +94,7 @@ public function test_cdn_link_uses_the_correct_version_defined_in_the_asset_mana
9494
{
9595
$expectedVersion = (new AssetService)->version();
9696
$this->assertStringContainsString(
97-
'https://cdn.jsdelivr.net/npm/hydefront@' . $expectedVersion . '/dist/hyde.css',
97+
'https://cdn.jsdelivr.net/npm/hydefront@'.$expectedVersion.'/dist/hyde.css',
9898
$this->renderTestView()
9999
);
100100
}

0 commit comments

Comments
 (0)