|
18 | 18 | * @copyright 2022 Caen De Silva
|
19 | 19 | * @license MIT License
|
20 | 20 | *
|
| 21 | + * @method static string path(string $path = '') |
21 | 22 | * @method static string vendorPath(string $path = '')
|
| 23 | + * @method static string pathToRelative(string $path) |
| 24 | + * @method static string getModelSourcePath(string $model, string $path = '') |
| 25 | + * @method static string getBladePagePath(string $path = '') |
22 | 26 | * @method static string getMarkdownPagePath(string $path = '')
|
| 27 | + * @method static string getMarkdownPostPath(string $path = '') |
| 28 | + * @method static string getDocumentationPagePath(string $path = '') |
23 | 29 | * @method static string getSiteOutputPath(string $path = '')
|
24 |
| - * @method static string getBladePagePath(string $path = '') |
25 |
| - * @method static string pathToRelative(string $path) |
| 30 | + * @method static string formatHtmlPath(string $destination) |
| 31 | + * @method static string relativeLink(string $destination) |
| 32 | + * @method static string image(string $name, bool $preferQualifiedUrl = false) |
| 33 | + * @method static string url(string $path = '', null|string $default = null) |
| 34 | + * @method static string makeTitle(string $slug) |
| 35 | + * @method static string currentPage() |
| 36 | + * @method static string getBasePath() |
26 | 37 | * @method static Features features()
|
| 38 | + * @method static FileCollection files() |
| 39 | + * @method static PageCollection pages() |
27 | 40 | * @method static RouteCollection routes()
|
| 41 | + * @method static RouteContract|null currentRoute() |
| 42 | + * @method static HydeKernel getInstance() |
28 | 43 | * @method static bool hasFeature(string $feature)
|
29 |
| - * @method static string path(string $path = '') |
30 |
| - * @method static string relativeLink(string $destination) |
31 |
| - * @method static PageCollection pages() |
32 |
| - * @method static FileCollection files() |
33 |
| - * @method static string getMarkdownPostPath(string $path = '') |
| 44 | + * @method static bool hasSiteUrl() |
34 | 45 | * @method static bool copy(string $from, string $to)
|
35 |
| - * @method static void boot() |
36 |
| - * @method static string getModelSourcePath(string $model, string $path = '') |
37 |
| - * @method static string image(string $name, bool $preferQualifiedUrl = false) |
38 |
| - * @method static RouteContract|null currentRoute() |
39 | 46 | * @method static bool touch(array|string $path)
|
40 |
| - * @method static string currentPage() |
41 |
| - * @method static string url(string $path = '', null|string $default = null) |
42 |
| - * @method static void setBasePath(string $basePath) |
43 |
| - * @method static string formatHtmlPath(string $destination) |
44 | 47 | * @method static bool unlink(array|string $path)
|
45 |
| - * @method static string makeTitle(string $slug) |
46 |
| - * @method static array toArray() |
47 |
| - * @method static bool hasSiteUrl() |
48 | 48 | * @method static void setInstance(HydeKernel $instance)
|
49 |
| - * @method static string getBasePath() |
50 |
| - * @method static HydeKernel getInstance() |
51 |
| - * @method static string getDocumentationPagePath(string $path = '') |
| 49 | + * @method static void setBasePath(string $basePath) |
| 50 | + * @method static array toArray() |
| 51 | + * @method static void boot() |
52 | 52 | */
|
53 | 53 | class Hyde extends Facade
|
54 | 54 | {
|
|
0 commit comments