This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | use Jumilla\Addomnipot\Laravel\Environment as AddonEnvironment; |
||
4 | |||
5 | if (!function_exists('runtime_get_caller_class')) { |
||
6 | /** |
||
7 | * @param int $level |
||
8 | * |
||
9 | * @return string |
||
10 | */ |
||
11 | function runtime_get_caller_class($level = 1) |
||
12 | { |
||
13 | $level += 1; |
||
14 | |||
15 | $caller = debug_backtrace(0, $level)[$level - 1]; |
||
16 | |||
17 | return array_get($caller, 'class'); |
||
18 | } |
||
19 | } |
||
20 | |||
21 | if (!function_exists('addon')) { |
||
22 | /** |
||
23 | * @param string $name Addon name. |
||
24 | * |
||
25 | * @return \Jumilla\Addomnipot\Laravel\Addons\Addon |
||
26 | */ |
||
27 | function addon($name = null) |
||
28 | { |
||
29 | return app(AddonEnvironment::class)->addon($name ?: addon_name(2)); |
||
30 | } |
||
31 | } |
||
32 | |||
33 | if (!function_exists('addon_name')) { |
||
34 | /** |
||
35 | * @param string | int $class |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | function addon_name($class = 1) |
||
0 ignored issues
–
show
|
|||
40 | { |
||
41 | if (is_numeric($class)) { |
||
42 | $class = runtime_get_caller_class($class + 1); |
||
43 | } |
||
44 | |||
45 | $addons = app(AddonEnvironment::class)->addons(); |
||
46 | |||
47 | // sort by length (DESC) |
||
48 | usort($addons, function ($v1, $v2) { |
||
49 | return strlen($v1->phpNamespace()) < strlen($v2->phpNamespace()) ? 1 : -1; |
||
50 | }); |
||
51 | |||
52 | foreach ($addons as $addon) { |
||
53 | if (starts_with($class, $addon->phpNamespace().'\\')) { |
||
54 | return $addon->name(); |
||
55 | } |
||
56 | } |
||
57 | |||
58 | return; |
||
59 | } |
||
60 | } |
||
61 | |||
62 | if (!function_exists('addon_path')) { |
||
63 | /** |
||
64 | * @param string $name Addon name. |
||
65 | * @param string $path |
||
66 | * |
||
67 | * @return mixed |
||
68 | */ |
||
69 | function addon_path($name, $path = null) |
||
70 | { |
||
71 | return addon($name)->path($path); |
||
72 | } |
||
73 | } |
||
74 | |||
75 | View Code Duplication | if (!function_exists('addon_config')) { |
|
76 | /** |
||
77 | * @param string $name Addon name. |
||
78 | * @param string $key |
||
79 | * @param mixed $value |
||
0 ignored issues
–
show
There is no parameter named
$value . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
80 | * |
||
81 | * @return mixed |
||
82 | */ |
||
83 | function addon_config($name, $key) |
||
0 ignored issues
–
show
|
|||
84 | { |
||
85 | return call_user_func_array([addon($name), 'config'], array_slice(func_get_args(), 1)); |
||
86 | } |
||
87 | } |
||
88 | |||
89 | View Code Duplication | if (!function_exists('addon_trans')) { |
|
90 | /** |
||
91 | * Translate the given message. |
||
92 | * |
||
93 | * @param string $name |
||
94 | * @param string $id |
||
95 | * @param array $parameters |
||
0 ignored issues
–
show
There is no parameter named
$parameters . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
96 | * @param string $domain |
||
0 ignored issues
–
show
There is no parameter named
$domain . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
97 | * @param string $locale |
||
0 ignored issues
–
show
There is no parameter named
$locale . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
98 | * |
||
99 | * @return string |
||
100 | */ |
||
101 | function addon_trans($name, $id) |
||
0 ignored issues
–
show
|
|||
102 | { |
||
103 | return call_user_func_array([addon($name), 'trans'], array_slice(func_get_args(), 1)); |
||
104 | } |
||
105 | } |
||
106 | |||
107 | View Code Duplication | if (!function_exists('addon_trans_choice')) { |
|
108 | /** |
||
109 | * Translates the given message based on a count. |
||
110 | * |
||
111 | * @param string $name |
||
112 | * @param string $id |
||
113 | * @param int $number |
||
0 ignored issues
–
show
There is no parameter named
$number . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
114 | * @param array $parameters |
||
0 ignored issues
–
show
There is no parameter named
$parameters . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
115 | * @param string $domain |
||
0 ignored issues
–
show
There is no parameter named
$domain . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
116 | * @param string $locale |
||
0 ignored issues
–
show
There is no parameter named
$locale . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
117 | * |
||
118 | * @return string |
||
119 | */ |
||
120 | function addon_trans_choice($name, $id) |
||
0 ignored issues
–
show
|
|||
121 | { |
||
122 | return call_user_func_array([addon($name), 'transChoice'], array_slice(func_get_args(), 1)); |
||
123 | } |
||
124 | } |
||
125 | |||
126 | View Code Duplication | if (!function_exists('addon_view')) { |
|
127 | /** |
||
128 | * Get the evaluated view contents for the given view. |
||
129 | * |
||
130 | * @param string $name |
||
131 | * @param string $view |
||
132 | * @param array $data |
||
0 ignored issues
–
show
There is no parameter named
$data . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
133 | * @param array $mergeData |
||
0 ignored issues
–
show
There is no parameter named
$mergeData . Was it maybe removed?
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. Consider the following example. The parameter /**
* @param array $germany
* @param array $island
* @param array $italy
*/
function finale($germany, $island) {
return "2:1";
}
The most likely cause is that the parameter was removed, but the annotation was not. ![]() |
|||
134 | * |
||
135 | * @return \Illuminate\View\View |
||
136 | */ |
||
137 | function addon_view($name, $view) |
||
0 ignored issues
–
show
|
|||
138 | { |
||
139 | return call_user_func_array([addon($name), 'view'], array_slice(func_get_args(), 1)); |
||
140 | } |
||
141 | } |
||
142 | |||
143 | View Code Duplication | if (!function_exists('addon_spec')) { |
|
144 | /** |
||
145 | * Get spec. |
||
146 | * |
||
147 | * @param string $name |
||
148 | * @param string $path |
||
149 | * |
||
150 | * @return \Jumilla\Addomnipot\Laravel\Specs\InputSpec |
||
151 | */ |
||
152 | function addon_spec($name, $path) |
||
0 ignored issues
–
show
|
|||
153 | { |
||
154 | return call_user_func_array([addon($name), 'spec'], array_slice(func_get_args(), 1)); |
||
155 | } |
||
156 | } |
||
157 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.