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 | /* |
||
4 | * This file is part of the [code] |
||
5 | * |
||
6 | * Copyright (C) [year] [author] |
||
7 | * |
||
8 | * For the full copyright and license information, please view the LICENSE |
||
9 | * file that was distributed with this source code. |
||
10 | */ |
||
11 | |||
12 | namespace Plugin\[code]; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
13 | |||
14 | use Eccube\Application; |
||
15 | use Symfony\Component\HttpKernel\Event\FilterControllerEvent; |
||
16 | use Symfony\Component\HttpKernel\Event\FilterResponseEvent; |
||
17 | use Symfony\Component\HttpKernel\Event\GetResponseEvent; |
||
18 | use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; |
||
19 | use Symfony\Component\HttpKernel\Event\PostResponseEvent; |
||
20 | |||
21 | class [code]Event |
||
0 ignored issues
–
show
This class is not in CamelCase format.
Classes in PHP are usually named in CamelCase. In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well. Thus the name database provider becomes ![]() |
|||
22 | { |
||
23 | |||
24 | /** @var \Eccube\Application $app */ |
||
25 | private $app; |
||
26 | |||
27 | public function __construct(Application $app) |
||
0 ignored issues
–
show
|
|||
28 | { |
||
29 | $this->app = $app; |
||
30 | } |
||
31 | |||
32 | public function onAppRequest(GetResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
33 | { |
||
34 | error_log('onAppRequest'); |
||
35 | } |
||
36 | |||
37 | public function onAppController(FilterControllerEvent $event) |
||
0 ignored issues
–
show
|
|||
38 | { |
||
39 | error_log('onAppController'); |
||
40 | } |
||
41 | |||
42 | public function onAppResponse(FilterResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
43 | { |
||
44 | error_log('onAppResponse'); |
||
45 | } |
||
46 | |||
47 | public function onAppException(GetResponseForExceptionEvent $event) |
||
0 ignored issues
–
show
|
|||
48 | { |
||
49 | error_log('onAppException'); |
||
50 | } |
||
51 | |||
52 | public function onAppTerminate(PostResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
53 | { |
||
54 | error_log('onAppTerminate'); |
||
55 | } |
||
56 | |||
57 | public function onFrontRequest(GetResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
58 | { |
||
59 | error_log('onFrontRequest'); |
||
60 | } |
||
61 | |||
62 | public function onFrontController(FilterControllerEvent $event) |
||
0 ignored issues
–
show
|
|||
63 | { |
||
64 | error_log('onFrontController'); |
||
65 | } |
||
66 | |||
67 | public function onFrontResponse(FilterResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
68 | { |
||
69 | error_log('onFrontResponse'); |
||
70 | } |
||
71 | |||
72 | public function onFrontException(GetResponseForExceptionEvent $event) |
||
0 ignored issues
–
show
|
|||
73 | { |
||
74 | error_log('onFrontException'); |
||
75 | } |
||
76 | |||
77 | public function onFrontTerminate(PostResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
78 | { |
||
79 | error_log('onFrontTerminate'); |
||
80 | } |
||
81 | |||
82 | public function onAdminRequest(GetResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
83 | { |
||
84 | error_log('onAdminRequest'); |
||
85 | } |
||
86 | |||
87 | public function onAdminController(FilterControllerEvent $event) |
||
0 ignored issues
–
show
|
|||
88 | { |
||
89 | error_log('onAdminController'); |
||
90 | } |
||
91 | |||
92 | public function onAdminResponse(FilterResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
93 | { |
||
94 | error_log('onAdminResponse'); |
||
95 | } |
||
96 | |||
97 | public function onAdminException(GetResponseForExceptionEvent $event) |
||
0 ignored issues
–
show
|
|||
98 | { |
||
99 | error_log('onAdminException'); |
||
100 | } |
||
101 | |||
102 | public function onAdminTerminate(PostResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
103 | { |
||
104 | error_log('onAdminTerminate'); |
||
105 | } |
||
106 | |||
107 | public function onRouteRequest(GetResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
108 | { |
||
109 | error_log('onRouteRequest'); |
||
110 | } |
||
111 | |||
112 | public function onRouteController(FilterControllerEvent $event) |
||
0 ignored issues
–
show
|
|||
113 | { |
||
114 | error_log('onRouteController'); |
||
115 | } |
||
116 | |||
117 | public function onRouteResponse(FilterResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
118 | { |
||
119 | error_log('onRouteResponse'); |
||
120 | } |
||
121 | |||
122 | public function onRouteException(GetResponseForExceptionEvent $event) |
||
0 ignored issues
–
show
|
|||
123 | { |
||
124 | error_log('onRouteException'); |
||
125 | } |
||
126 | |||
127 | public function onRouteTerminate(PostResponseEvent $event) |
||
0 ignored issues
–
show
|
|||
128 | { |
||
129 | error_log('onRouteTerminate'); |
||
130 | } |
||
131 | |||
132 | } |
||
133 |