File tree 6 files changed +14
-12
lines changed
6 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 6
6
7
7
/**
8
8
* Offloads asset related methods for the Hyde Facade.
9
- * @deprecated version 0.41.x - Use the Asset facade instead.
10
9
*
10
+ * @deprecated version 0.41.x - Use the Asset facade instead.
11
11
* @see \Hyde\Framework\Hyde
12
12
*/
13
13
trait AssetManager
14
14
{
15
15
/**
16
16
* Get the asset service instance.
17
- *
17
+ *
18
18
* @deprecated version 0.41.x - Use the Asset facade instead.
19
+ *
19
20
* @return \Hyde\Framework\Contracts\AssetServiceContract
20
21
*/
21
22
public static function assetManager (): AssetServiceContract
@@ -25,6 +26,7 @@ public static function assetManager(): AssetServiceContract
25
26
26
27
/**
27
28
* Return the Hyde stylesheet.
29
+ *
28
30
* @deprecated version 0.41.x - Use the Asset facade instead.
29
31
*/
30
32
public static function styles (): string
@@ -34,6 +36,7 @@ public static function styles(): string
34
36
35
37
/**
36
38
* Return the Hyde scripts.
39
+ *
37
40
* @deprecated version 0.41.x - Use the Asset facade instead.
38
41
*/
39
42
public static function scripts (): string
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ protected static function getFacadeAccessor(): string
21
21
{
22
22
return AssetServiceContract::class;
23
23
}
24
- }
24
+ }
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ public function constructCdnPath(string $file): string
39
39
40
40
/**
41
41
* Alias for constructCdnPath.
42
+ *
42
43
* @since v0.41.x
43
44
*/
44
45
public function cdnLink (string $ file ): string
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ use Hyde \Framework \Contracts \AssetServiceContract ;
4
+ use Hyde \Framework \Facades \Asset ;
3
5
use Hyde \Framework \Services \AssetService ;
4
6
use Hyde \Testing \TestCase ;
5
- use Hyde \Framework \Facades \Asset ;
6
- use Hyde \Framework \Contracts \AssetServiceContract ;
7
7
8
8
/**
9
9
* @covers \Hyde\Framework\Facades\Asset
@@ -25,4 +25,4 @@ public function test_asset_facade_can_call_methods_on_the_asset_service()
25
25
$ service = new AssetService ();
26
26
$ this ->assertEquals ($ service ->version (), Asset::version ());
27
27
}
28
- }
28
+ }
Original file line number Diff line number Diff line change 12
12
*/
13
13
class ScriptsComponentViewTest extends TestCase
14
14
{
15
- protected ?string $ mockCurrentPage = null ;
15
+ protected ?string $ mockCurrentPage = null ;
16
16
17
17
protected function renderTestView (): string
18
18
{
@@ -35,13 +35,11 @@ public function test_component_has_link_to_app_js_file_when_it_exists()
35
35
unlink (Hyde::path ('_media/app.js ' ));
36
36
}
37
37
38
-
39
38
public function test_component_does_not_render_link_to_app_js_when_it_does_not_exist ()
40
39
{
41
40
$ this ->assertStringNotContainsString ('<script defer src="media/app.js" ' , $ this ->renderTestView ());
42
41
}
43
42
44
-
45
43
public function test_component_uses_relative_path_to_app_js_file_for_nested_pages ()
46
44
{
47
45
touch (Hyde::path ('_media/app.js ' ));
@@ -98,7 +96,7 @@ public function test_cdn_link_uses_the_correct_version_defined_in_the_asset_mana
98
96
{
99
97
$ expectedVersion = (new AssetService )->version ();
100
98
$ this ->assertStringContainsString (
101
- 'https://cdn.jsdelivr.net/npm/hydefront@ ' . $ expectedVersion . '/dist/hyde.js ' ,
99
+ 'https://cdn.jsdelivr.net/npm/hydefront@ ' . $ expectedVersion. '/dist/hyde.js ' ,
102
100
$ this ->renderTestView ()
103
101
);
104
102
}
Original file line number Diff line number Diff line change 12
12
*/
13
13
class StylesComponentViewTest extends TestCase
14
14
{
15
- protected ?string $ mockCurrentPage = null ;
15
+ protected ?string $ mockCurrentPage = null ;
16
16
17
17
protected function renderTestView (): string
18
18
{
@@ -94,7 +94,7 @@ public function test_cdn_link_uses_the_correct_version_defined_in_the_asset_mana
94
94
{
95
95
$ expectedVersion = (new AssetService )->version ();
96
96
$ this ->assertStringContainsString (
97
- 'https://cdn.jsdelivr.net/npm/hydefront@ ' . $ expectedVersion . '/dist/hyde.css ' ,
97
+ 'https://cdn.jsdelivr.net/npm/hydefront@ ' . $ expectedVersion. '/dist/hyde.css ' ,
98
98
$ this ->renderTestView ()
99
99
);
100
100
}
You can’t perform that action at this time.
0 commit comments