-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_ide_helper_webkernel.php
More file actions
101 lines (89 loc) · 2.3 KB
/
_ide_helper_webkernel.php
File metadata and controls
101 lines (89 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php declare(strict_types=1);
/**
* Webkernel IDE Helper File
*
* This file is auto-generated and should not be manually edited.
* Regenerate with: php bootstrap/webkernel/support/boot/_dev_tools/_ide_helper_generator.php
*
* @generated 2026-04-25 01:17:32
*/
/**
* Get Webkernel branding asset URL
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelBrandingUrl')) {
function webkernelBrandingUrl(string $path = ""): string { return ''; }
}
/**
* Get Webkernel version string
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelVersion')) {
function webkernelVersion(): string { return ''; }
}
/**
* Get Webkernel semantic version
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelSemver')) {
function webkernelSemver(): string { return ''; }
}
/**
* Get Webkernel build number
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelBuild')) {
function webkernelBuild(): int { return 0; }
}
/**
* Get Webkernel base path
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelBasePath')) {
function webkernelBasePath(string $path = ""): string { return ''; }
}
/**
* Get Webkernel installation path
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelPath')) {
function webkernelPath(string $path = ""): string { return ''; }
}
/**
* Get Webkernel support directory path
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelSupport')) {
function webkernelSupport(string $path = ""): string { return ''; }
}
/**
* Get Webkernel Arcanes subsystem instance
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelArcanes')) {
function webkernelArcanes(): object { return new \stdClass(); }
}
/**
* Render Webkernel emergency error page
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelEmergencyPage')) {
function webkernelEmergencyPage(int $code = 500, string $message = ""): void { }
}
/**
* Get Webkernel router instance
*
* @generated IDE helper (do not edit manually)
*/
if (!function_exists('webkernelRouter')) {
function webkernelRouter(): object { return new \stdClass(); }
}