Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace Hyde\Framework\Contracts;
4
5interface AssetServiceContract
6{
7    /**
8     * The HydeFront version to load.
9     */
10    public function version(): string;
11
12    /**
13     * Return the main Hyde stylesheet location/path.
14     */
15    public function stylePath(): string;
16
17    /**
18     * Return the main Hyde script location/path.
19     */
20    public function scriptPath(): string;
21
22    /**
23     * Construct a URI path for the CDN using the static dist version.
24     */
25    public function constructCdnPath(string $file): string;
26}