/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
- use App\Mopie;
-
- class BaseObject extends Controller
- {
- protected $_data;
-
- public function __construct($data) {
- $this->_data = $data;
- }
-
- public function getID() {
- return $this->_data['id'];
- }
-
- public function getPoster() {
- return $this->_data['poster_path'];
- }
-
- public function getVoteAverage() {
- return $this->_data['vote_average'];
- }
-
- public function getVoteCount() {
- return $this->_data['vote_count'];
- }
-
- public function get($item = ''){
- if(empty($item)){
- return $this->_data;
- }
- if(array_key_exists($item, $this->_data)){
- return $this->_data[$item];
- }
- return null;
- }
-
- public function getCast(){
- return $this->getCredits('cast');
- }
-
Arguments
"Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) ◀Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) (View: /home4/nibmhwor/public_html/-/engine/themes/v1 ▶"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
ErrorException {#628 ▶
#message: "Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php)"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
-previous: ErrorException {#627 ▶
#message: "Undefined index: vote_average"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
#severity: E_NOTICE
}
#severity: E_ERROR
}
0
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
"Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php)"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
ErrorException {#627 ▶
#message: "Undefined index: vote_average"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
#severity: E_NOTICE
}
2
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
"Undefined index: vote_average"
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
8
"Undefined index: vote_average"
"/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
26
[]
/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php
<article id="<?php echo e($item->getID()); ?>" class="item <?php echo e($class); ?>">
<div class="thumb mb-4">
<a href="<?php echo e(Mopie::route('movie.single',['id' => $item->getID(), 'slug' => str_slug($item->getOriginalTitle())])); ?>" rel="bookmark" title="<?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)">
<div class="_img_holder">
<img class="img-fluid rounded" src="<?php echo e(Mopie::imgPoster($item->getPoster())); ?>" alt="Image <?php echo e($item->getTitle()); ?>" title="Image <?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)">
<div class="_overlay_link">
<button class="play-button play-button--small" type="button"></button>
<div class="rate"><i class="fa fa-star text-warning"></i> <span class="small text-white"><?php echo e($item->getVoteAverage()); ?>/10</span></div>
</div>
</div>
</a>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php echo e(Mopie::route('movie.single',['id' => $item->getID(), 'slug' => str_slug($item->getOriginalTitle())])); ?>" class="_title" rel="bookmark" title="<?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)"><?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)</a>
</h2>
</header>
</div>
</article>
<?php /**PATH /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php ENDPATH**/ ?>
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php"
array:11 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#134}
1 => Genre {#135}
2 => Genre {#136}
3 => Genre {#137}
4 => Genre {#138}
5 => Genre {#139}
6 => Genre {#140}
7 => Genre {#141}
8 => Genre {#142}
9 => Genre {#143}
10 => Genre {#144}
11 => Genre {#145}
12 => Genre {#146}
13 => Genre {#147}
14 => Genre {#148}
15 => Genre {#149}
16 => Genre {#150}
17 => Genre {#151}
18 => Genre {#152}
]
"errors" => ViewErrorBag {#279}
"obLevel" => 0
"data" => Person {#282}
"title" => "Mia Malkova"
"__currentLoopData" => array:316 [▶
0 => Movie {#310}
1 => Movie {#308}
2 => Movie {#309}
3 => Movie {#311}
4 => Movie {#312}
5 => Movie {#313}
6 => Movie {#314}
7 => Movie {#315}
8 => Movie {#316}
9 => Movie {#317}
10 => Movie {#318}
11 => Movie {#319}
12 => Movie {#320}
13 => Movie {#321}
14 => Movie {#322}
15 => Movie {#323}
16 => Movie {#324}
17 => Movie {#325}
18 => Movie {#326}
19 => Movie {#327}
20 => Movie {#328}
21 => Movie {#329}
22 => Movie {#330}
23 => Movie {#331}
24 => Movie {#332}
25 => Movie {#333}
26 => Movie {#334}
27 => Movie {#335}
28 => Movie {#336}
29 => Movie {#337}
30 => Movie {#338}
31 => Movie {#339}
32 => Movie {#340}
33 => Movie {#341}
34 => Movie {#342}
35 => Movie {#343}
36 => Movie {#344}
37 => Movie {#345}
38 => Movie {#346}
39 => Movie {#347}
40 => Movie {#348}
41 => Movie {#349}
42 => Movie {#350}
43 => Movie {#351}
44 => Movie {#352}
45 => Movie {#353}
46 => Movie {#354}
47 => Movie {#355}
48 => Movie {#356}
49 => Movie {#357}
50 => Movie {#358}
51 => Movie {#359}
52 => Movie {#360}
53 => Movie {#361}
54 => Movie {#362}
55 => Movie {#363}
56 => Movie {#364}
57 => Movie {#365}
58 => Movie {#366}
59 => Movie {#367}
60 => Movie {#368}
61 => Movie {#369}
62 => Movie {#370}
63 => Movie {#371}
64 => Movie {#372}
65 => Movie {#373}
66 => Movie {#374}
67 => Movie {#375}
68 => Movie {#376}
69 => Movie {#377}
70 => Movie {#378}
71 => Movie {#379}
72 => Movie {#380}
73 => Movie {#381}
74 => Movie {#382}
75 => Movie {#383}
76 => Movie {#384}
77 => Movie {#385}
78 => Movie {#386}
79 => Movie {#387}
80 => Movie {#388}
81 => Movie {#389}
82 => Movie {#390}
83 => Movie {#391}
84 => Movie {#392}
85 => Movie {#393}
86 => Movie {#394}
87 => Movie {#395}
88 => Movie {#396}
89 => Movie {#397}
90 => Movie {#398}
91 => Movie {#399}
92 => Movie {#400}
93 => Movie {#401}
94 => Movie {#402}
95 => Movie {#403}
96 => Movie {#404}
97 => Movie {#405}
98 => Movie {#406}
99 => Movie {#407}
100 => Movie {#408}
101 => Movie {#409}
102 => Movie {#410}
103 => Movie {#411}
104 => Movie {#412}
105 => Movie {#413}
106 => Movie {#414}
107 => Movie {#415}
108 => Movie {#416}
109 => Movie {#417}
110 => Movie {#418}
111 => Movie {#419}
112 => Movie {#420}
113 => Movie {#421}
114 => Movie {#422}
115 => Movie {#423}
116 => Movie {#424}
117 => Movie {#425}
118 => Movie {#426}
119 => Movie {#427}
120 => Movie {#428}
121 => Movie {#429}
122 => Movie {#430}
123 => Movie {#431}
124 => Movie {#432}
125 => Movie {#433}
126 => Movie {#434}
127 => Movie {#435}
128 => Movie {#436}
129 => Movie {#437}
130 => Movie {#438}
131 => Movie {#439}
132 => Movie {#440}
133 => Movie {#441}
134 => Movie {#442}
135 => Movie {#443}
136 => Movie {#444}
137 => Movie {#445}
138 => Movie {#446}
139 => Movie {#447}
140 => Movie {#448}
141 => Movie {#449}
142 => Movie {#450}
143 => Movie {#451}
144 => Movie {#452}
145 => Movie {#453}
146 => Movie {#454}
147 => Movie {#455}
148 => Movie {#456}
149 => Movie {#457}
150 => Movie {#458}
151 => Movie {#459}
152 => Movie {#460}
153 => Movie {#461}
154 => Movie {#462}
155 => Movie {#463}
156 => Movie {#464}
157 => Movie {#465}
158 => Movie {#466}
159 => Movie {#467}
160 => Movie {#468}
161 => Movie {#469}
162 => Movie {#470}
163 => Movie {#471}
164 => Movie {#472}
165 => Movie {#473}
166 => Movie {#474}
167 => Movie {#475}
168 => Movie {#476}
169 => Movie {#477}
170 => Movie {#478}
171 => Movie {#479}
172 => Movie {#480}
173 => Movie {#481}
174 => Movie {#482}
175 => Movie {#483}
176 => Movie {#484}
177 => Movie {#485}
178 => Movie {#486}
179 => Movie {#487}
180 => Movie {#488}
181 => Movie {#489}
182 => Movie {#490}
183 => Movie {#491}
184 => Movie {#492}
185 => Movie {#493}
186 => Movie {#494}
187 => Movie {#495}
188 => Movie {#496}
189 => Movie {#497}
190 => Movie {#498}
191 => Movie {#499}
192 => Movie {#500}
193 => Movie {#501}
194 => Movie {#502}
195 => Movie {#503}
196 => Movie {#504}
197 => Movie {#505}
198 => Movie {#506}
199 => Movie {#507}
200 => Movie {#508}
201 => Movie {#509}
202 => Movie {#510}
203 => Movie {#511}
204 => Movie {#512}
205 => Movie {#513}
206 => Movie {#514}
207 => Movie {#515}
208 => Movie {#516}
209 => Movie {#517}
210 => Movie {#518}
211 => Movie {#519}
212 => Movie {#520}
213 => Movie {#521}
214 => Movie {#522}
215 => Movie {#523}
216 => Movie {#524}
217 => Movie {#525}
218 => Movie {#526}
219 => Movie {#527}
220 => Movie {#528}
221 => Movie {#529}
222 => Movie {#530}
223 => Movie {#531}
224 => Movie {#532}
225 => Movie {#533}
226 => Movie {#534}
227 => Movie {#535}
228 => Movie {#536}
229 => Movie {#537}
230 => Movie {#538}
231 => Movie {#539}
232 => Movie {#540}
233 => Movie {#541}
234 => Movie {#542}
235 => Movie {#543}
236 => Movie {#544}
237 => Movie {#545}
238 => Movie {#546}
239 => Movie {#547}
240 => Movie {#548}
241 => Movie {#549}
242 => Movie {#550}
243 => Movie {#551}
244 => Movie {#552}
245 => Movie {#553}
246 => Movie {#554}
247 => Movie {#555}
248 => Movie {#556}
249 => Movie {#557}
250 => Movie {#558}
251 => Movie {#559}
252 => Movie {#560}
253 => Movie {#561}
254 => Movie {#562}
255 => Movie {#563}
256 => Movie {#564}
257 => Movie {#565}
258 => Movie {#566}
259 => Movie {#567}
260 => Movie {#568}
261 => Movie {#569}
262 => Movie {#570}
263 => Movie {#571}
264 => Movie {#572}
265 => Movie {#573}
266 => Movie {#574}
267 => Movie {#575}
268 => Movie {#576}
269 => Movie {#577}
270 => Movie {#578}
271 => Movie {#579}
272 => Movie {#580}
273 => Movie {#581}
274 => Movie {#582}
275 => Movie {#583}
276 => Movie {#584}
277 => Movie {#585}
278 => Movie {#586}
279 => Movie {#587}
280 => Movie {#588}
281 => Movie {#589}
282 => Movie {#590}
283 => Movie {#591}
284 => Movie {#592}
285 => Movie {#593}
286 => Movie {#594}
287 => Movie {#595}
288 => Movie {#596}
289 => Movie {#597}
290 => Movie {#598}
291 => Movie {#599}
292 => Movie {#600}
293 => Movie {#601}
294 => Movie {#602}
295 => Movie {#603}
296 => Movie {#604}
297 => Movie {#605}
298 => Movie {#606}
299 => Movie {#607}
300 => Movie {#608}
301 => Movie {#609}
302 => Movie {#610}
303 => Movie {#611}
304 => Movie {#612}
305 => Movie {#613}
306 => Movie {#614}
307 => Movie {#615}
308 => Movie {#616}
309 => Movie {#617}
310 => Movie {#618}
311 => Movie {#619}
312 => Movie {#620}
313 => Movie {#621}
314 => Movie {#622}
315 => Movie {#623}
]
"item" => Movie {#468}
"loop" => {#624}
"class" => "col-6 col-md-2"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
Arguments
"/home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php"
array:11 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#134}
1 => Genre {#135}
2 => Genre {#136}
3 => Genre {#137}
4 => Genre {#138}
5 => Genre {#139}
6 => Genre {#140}
7 => Genre {#141}
8 => Genre {#142}
9 => Genre {#143}
10 => Genre {#144}
11 => Genre {#145}
12 => Genre {#146}
13 => Genre {#147}
14 => Genre {#148}
15 => Genre {#149}
16 => Genre {#150}
17 => Genre {#151}
18 => Genre {#152}
]
"errors" => ViewErrorBag {#279}
"obLevel" => 0
"data" => Person {#282}
"title" => "Mia Malkova"
"__currentLoopData" => array:316 [▶
0 => Movie {#310}
1 => Movie {#308}
2 => Movie {#309}
3 => Movie {#311}
4 => Movie {#312}
5 => Movie {#313}
6 => Movie {#314}
7 => Movie {#315}
8 => Movie {#316}
9 => Movie {#317}
10 => Movie {#318}
11 => Movie {#319}
12 => Movie {#320}
13 => Movie {#321}
14 => Movie {#322}
15 => Movie {#323}
16 => Movie {#324}
17 => Movie {#325}
18 => Movie {#326}
19 => Movie {#327}
20 => Movie {#328}
21 => Movie {#329}
22 => Movie {#330}
23 => Movie {#331}
24 => Movie {#332}
25 => Movie {#333}
26 => Movie {#334}
27 => Movie {#335}
28 => Movie {#336}
29 => Movie {#337}
30 => Movie {#338}
31 => Movie {#339}
32 => Movie {#340}
33 => Movie {#341}
34 => Movie {#342}
35 => Movie {#343}
36 => Movie {#344}
37 => Movie {#345}
38 => Movie {#346}
39 => Movie {#347}
40 => Movie {#348}
41 => Movie {#349}
42 => Movie {#350}
43 => Movie {#351}
44 => Movie {#352}
45 => Movie {#353}
46 => Movie {#354}
47 => Movie {#355}
48 => Movie {#356}
49 => Movie {#357}
50 => Movie {#358}
51 => Movie {#359}
52 => Movie {#360}
53 => Movie {#361}
54 => Movie {#362}
55 => Movie {#363}
56 => Movie {#364}
57 => Movie {#365}
58 => Movie {#366}
59 => Movie {#367}
60 => Movie {#368}
61 => Movie {#369}
62 => Movie {#370}
63 => Movie {#371}
64 => Movie {#372}
65 => Movie {#373}
66 => Movie {#374}
67 => Movie {#375}
68 => Movie {#376}
69 => Movie {#377}
70 => Movie {#378}
71 => Movie {#379}
72 => Movie {#380}
73 => Movie {#381}
74 => Movie {#382}
75 => Movie {#383}
76 => Movie {#384}
77 => Movie {#385}
78 => Movie {#386}
79 => Movie {#387}
80 => Movie {#388}
81 => Movie {#389}
82 => Movie {#390}
83 => Movie {#391}
84 => Movie {#392}
85 => Movie {#393}
86 => Movie {#394}
87 => Movie {#395}
88 => Movie {#396}
89 => Movie {#397}
90 => Movie {#398}
91 => Movie {#399}
92 => Movie {#400}
93 => Movie {#401}
94 => Movie {#402}
95 => Movie {#403}
96 => Movie {#404}
97 => Movie {#405}
98 => Movie {#406}
99 => Movie {#407}
100 => Movie {#408}
101 => Movie {#409}
102 => Movie {#410}
103 => Movie {#411}
104 => Movie {#412}
105 => Movie {#413}
106 => Movie {#414}
107 => Movie {#415}
108 => Movie {#416}
109 => Movie {#417}
110 => Movie {#418}
111 => Movie {#419}
112 => Movie {#420}
113 => Movie {#421}
114 => Movie {#422}
115 => Movie {#423}
116 => Movie {#424}
117 => Movie {#425}
118 => Movie {#426}
119 => Movie {#427}
120 => Movie {#428}
121 => Movie {#429}
122 => Movie {#430}
123 => Movie {#431}
124 => Movie {#432}
125 => Movie {#433}
126 => Movie {#434}
127 => Movie {#435}
128 => Movie {#436}
129 => Movie {#437}
130 => Movie {#438}
131 => Movie {#439}
132 => Movie {#440}
133 => Movie {#441}
134 => Movie {#442}
135 => Movie {#443}
136 => Movie {#444}
137 => Movie {#445}
138 => Movie {#446}
139 => Movie {#447}
140 => Movie {#448}
141 => Movie {#449}
142 => Movie {#450}
143 => Movie {#451}
144 => Movie {#452}
145 => Movie {#453}
146 => Movie {#454}
147 => Movie {#455}
148 => Movie {#456}
149 => Movie {#457}
150 => Movie {#458}
151 => Movie {#459}
152 => Movie {#460}
153 => Movie {#461}
154 => Movie {#462}
155 => Movie {#463}
156 => Movie {#464}
157 => Movie {#465}
158 => Movie {#466}
159 => Movie {#467}
160 => Movie {#468}
161 => Movie {#469}
162 => Movie {#470}
163 => Movie {#471}
164 => Movie {#472}
165 => Movie {#473}
166 => Movie {#474}
167 => Movie {#475}
168 => Movie {#476}
169 => Movie {#477}
170 => Movie {#478}
171 => Movie {#479}
172 => Movie {#480}
173 => Movie {#481}
174 => Movie {#482}
175 => Movie {#483}
176 => Movie {#484}
177 => Movie {#485}
178 => Movie {#486}
179 => Movie {#487}
180 => Movie {#488}
181 => Movie {#489}
182 => Movie {#490}
183 => Movie {#491}
184 => Movie {#492}
185 => Movie {#493}
186 => Movie {#494}
187 => Movie {#495}
188 => Movie {#496}
189 => Movie {#497}
190 => Movie {#498}
191 => Movie {#499}
192 => Movie {#500}
193 => Movie {#501}
194 => Movie {#502}
195 => Movie {#503}
196 => Movie {#504}
197 => Movie {#505}
198 => Movie {#506}
199 => Movie {#507}
200 => Movie {#508}
201 => Movie {#509}
202 => Movie {#510}
203 => Movie {#511}
204 => Movie {#512}
205 => Movie {#513}
206 => Movie {#514}
207 => Movie {#515}
208 => Movie {#516}
209 => Movie {#517}
210 => Movie {#518}
211 => Movie {#519}
212 => Movie {#520}
213 => Movie {#521}
214 => Movie {#522}
215 => Movie {#523}
216 => Movie {#524}
217 => Movie {#525}
218 => Movie {#526}
219 => Movie {#527}
220 => Movie {#528}
221 => Movie {#529}
222 => Movie {#530}
223 => Movie {#531}
224 => Movie {#532}
225 => Movie {#533}
226 => Movie {#534}
227 => Movie {#535}
228 => Movie {#536}
229 => Movie {#537}
230 => Movie {#538}
231 => Movie {#539}
232 => Movie {#540}
233 => Movie {#541}
234 => Movie {#542}
235 => Movie {#543}
236 => Movie {#544}
237 => Movie {#545}
238 => Movie {#546}
239 => Movie {#547}
240 => Movie {#548}
241 => Movie {#549}
242 => Movie {#550}
243 => Movie {#551}
244 => Movie {#552}
245 => Movie {#553}
246 => Movie {#554}
247 => Movie {#555}
248 => Movie {#556}
249 => Movie {#557}
250 => Movie {#558}
251 => Movie {#559}
252 => Movie {#560}
253 => Movie {#561}
254 => Movie {#562}
255 => Movie {#563}
256 => Movie {#564}
257 => Movie {#565}
258 => Movie {#566}
259 => Movie {#567}
260 => Movie {#568}
261 => Movie {#569}
262 => Movie {#570}
263 => Movie {#571}
264 => Movie {#572}
265 => Movie {#573}
266 => Movie {#574}
267 => Movie {#575}
268 => Movie {#576}
269 => Movie {#577}
270 => Movie {#578}
271 => Movie {#579}
272 => Movie {#580}
273 => Movie {#581}
274 => Movie {#582}
275 => Movie {#583}
276 => Movie {#584}
277 => Movie {#585}
278 => Movie {#586}
279 => Movie {#587}
280 => Movie {#588}
281 => Movie {#589}
282 => Movie {#590}
283 => Movie {#591}
284 => Movie {#592}
285 => Movie {#593}
286 => Movie {#594}
287 => Movie {#595}
288 => Movie {#596}
289 => Movie {#597}
290 => Movie {#598}
291 => Movie {#599}
292 => Movie {#600}
293 => Movie {#601}
294 => Movie {#602}
295 => Movie {#603}
296 => Movie {#604}
297 => Movie {#605}
298 => Movie {#606}
299 => Movie {#607}
300 => Movie {#608}
301 => Movie {#609}
302 => Movie {#610}
303 => Movie {#611}
304 => Movie {#612}
305 => Movie {#613}
306 => Movie {#614}
307 => Movie {#615}
308 => Movie {#616}
309 => Movie {#617}
310 => Movie {#618}
311 => Movie {#619}
312 => Movie {#620}
313 => Movie {#621}
314 => Movie {#622}
315 => Movie {#623}
]
"item" => Movie {#468}
"loop" => {#624}
"class" => "col-6 col-md-2"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return array|string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php
<li><?php echo e(__('utilities.know_for')); ?>: <span><?php echo e($data->getKnownForDepartment()); ?></span></li>
<li><?php echo e(__('utilities.birthday')); ?>: <span><?php echo e($data->getBirthday()); ?></span></li>
<li><?php echo e(__('utilities.place_of_birth')); ?>: <span><?php echo e($data->getPlaceOfBirth()); ?></span></li>
<li><?php echo e(__('utilities.also_know_as')); ?>: <span><?php echo e($data->getAlsoKnownAs()); ?></span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="py-4">
<div class="container p-3 p-md-4 rounded-lg mb-5">
<div class="row">
<div class="col-12 mb-4">
<h3 class="h4"><?php echo e(__('section.title.movie_list_of', ['name' => $data->getName()])); ?></h3>
</div>
<?php $__currentLoopData = $data->getMovieCreditCasts(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make(config('tmdb.theme').'._item_movie', ['class' => 'col-6 col-md-2'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make(config('tmdb.theme').'.layouts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home4/nibmhwor/public_html/-/engine/themes/v1/people.blade.php ENDPATH**/ ?>
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php"
array:6 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#134}
1 => Genre {#135}
2 => Genre {#136}
3 => Genre {#137}
4 => Genre {#138}
5 => Genre {#139}
6 => Genre {#140}
7 => Genre {#141}
8 => Genre {#142}
9 => Genre {#143}
10 => Genre {#144}
11 => Genre {#145}
12 => Genre {#146}
13 => Genre {#147}
14 => Genre {#148}
15 => Genre {#149}
16 => Genre {#150}
17 => Genre {#151}
18 => Genre {#152}
]
"errors" => ViewErrorBag {#279}
"data" => Person {#282}
"title" => "Mia Malkova"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
Arguments
"/home4/nibmhwor/public_html/-/engine/themes/v1/people.blade.php"
array:6 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#134}
1 => Genre {#135}
2 => Genre {#136}
3 => Genre {#137}
4 => Genre {#138}
5 => Genre {#139}
6 => Genre {#140}
7 => Genre {#141}
8 => Genre {#142}
9 => Genre {#143}
10 => Genre {#144}
11 => Genre {#145}
12 => Genre {#146}
13 => Genre {#147}
14 => Genre {#148}
15 => Genre {#149}
16 => Genre {#150}
17 => Genre {#151}
18 => Genre {#152}
]
"errors" => ViewErrorBag {#279}
"data" => Person {#282}
"title" => "Mia Malkova"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return array|string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Http/Response.php
* @return $this
*/
public function setContent($content)
{
$this->original = $content;
// If the content is "JSONable" we will set the appropriate header and convert
// the content to JSON. This is useful when returning something like models
// from routes that will be automatically transformed to their JSON form.
if ($this->shouldBeJson($content)) {
$this->header('Content-Type', 'application/json');
$content = $this->morphToJson($content);
}
// If this content implements the "Renderable" interface then we will call the
// render method on the object so we will avoid any "__toString" exceptions
// that might be thrown and have their errors obscured by PHP's handling.
elseif ($content instanceof Renderable) {
$content = $content->render();
}
parent::setContent($content);
return $this;
}
/**
* Determine if the given content should be turned into JSON.
*
* @param mixed $content
* @return bool
*/
protected function shouldBeJson($content)
{
return $content instanceof Arrayable ||
$content instanceof Jsonable ||
$content instanceof ArrayObject ||
$content instanceof JsonSerializable ||
is_array($content);
/home4/nibmhwor/public_html/-/engine/vendor/symfony/http-foundation/Response.php
500 => 'Internal Server Error',
501 => 'Not Implemented',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported',
506 => 'Variant Also Negotiates', // RFC2295
507 => 'Insufficient Storage', // RFC4918
508 => 'Loop Detected', // RFC5842
510 => 'Not Extended', // RFC2774
511 => 'Network Authentication Required', // RFC6585
];
/**
* @throws \InvalidArgumentException When the HTTP status code is not valid
*/
public function __construct($content = '', int $status = 200, array $headers = [])
{
$this->headers = new ResponseHeaderBag($headers);
$this->setContent($content);
$this->setStatusCode($status);
$this->setProtocolVersion('1.0');
}
/**
* Factory method for chainability.
*
* Example:
*
* return Response::create($body, 200)
* ->setSharedMaxAge(300);
*
* @param mixed $content The response content, see setContent()
* @param int $status The response status code
* @param array $headers An array of response headers
*
* @return static
*/
public static function create($content = '', $status = 200, $headers = [])
{
Arguments
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*/
public static function toResponse($request, $response)
{
if ($response instanceof Responsable) {
$response = $response->toResponse($request);
}
if ($response instanceof PsrResponseInterface) {
$response = (new HttpFoundationFactory)->createResponse($response);
} elseif ($response instanceof Model && $response->wasRecentlyCreated) {
$response = new JsonResponse($response, 201);
} elseif (! $response instanceof SymfonyResponse &&
($response instanceof Arrayable ||
$response instanceof Jsonable ||
$response instanceof ArrayObject ||
$response instanceof JsonSerializable ||
is_array($response))) {
$response = new JsonResponse($response);
} elseif (! $response instanceof SymfonyResponse) {
$response = new Response($response);
}
if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
$response->setNotModified();
}
return $response->prepare($request);
}
/**
* Substitute the route bindings onto the route.
*
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Routing\Route
*
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
*/
public function substituteBindings($route)
{
foreach ($route->parameters() as $key => $value) {
Arguments
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
* Sort the given middleware by priority.
*
* @param \Illuminate\Support\Collection $middlewares
* @return array
*/
protected function sortMiddleware(Collection $middlewares)
{
return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all();
}
/**
* Create a response instance from the given value.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function prepareResponse($request, $response)
{
return static::toResponse($request, $response);
}
/**
* Static version of prepareResponse.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public static function toResponse($request, $response)
{
if ($response instanceof Responsable) {
$response = $response->toResponse($request);
}
if ($response instanceof PsrResponseInterface) {
$response = (new HttpFoundationFactory)->createResponse($response);
} elseif ($response instanceof Model && $response->wasRecentlyCreated) {
$response = new JsonResponse($response, 201);
} elseif (! $response instanceof SymfonyResponse &&
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
View {#304}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
View {#304}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/app/Http/Middleware/Language.php
* @return mixed
*/
public function handle($request, Closure $next)
{
$locales = config('app.locales');
// Check if the first segment matches a language code
if (!array_key_exists($request->segment(1), config('app.locales'))) {
// Store segments in array
$segments = $request->segments();
// Set the default language code as the first segment
$segments = array_prepend($segments, config('app.fallback_locale'));
// Redirect to the correct url
return redirect()->to(implode('/', $segments));
}
// The request already contains the language code
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#235 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
*/
public function __construct(Registrar $router)
{
$this->router = $router;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->router->substituteBindings($route = $request->route());
$this->router->substituteImplicitBindings($route);
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#255 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Session\TokenMismatchException
*/
public function handle($request, Closure $next)
{
if (
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return tap($next($request), function ($response) use ($request) {
if ($this->shouldAddXsrfTokenCookie()) {
$this->addCookieToResponse($request, $response);
}
});
}
throw new TokenMismatchException('CSRF token mismatch.');
}
/**
* Determine if the HTTP request uses a ‘read’ verb.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function isReading($request)
{
return in_array($request->method(), ['HEAD', 'GET', 'OPTIONS']);
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#256 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// If the current session has an "errors" variable bound to it, we will share
// its value with all view instances so the views can easily access errors
// without having to bind. An empty bag is set when there aren't errors.
$this->view->share(
'errors', $request->session()->get('errors') ?: new ViewErrorBag
);
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#257 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (! $this->sessionConfigured()) {
return $next($request);
}
// If a session driver has been configured, we will need to start the session here
// so that the data is ready for an application. Note that the Laravel sessions
// do not make use of PHP "native" sessions in any way since they are crappy.
$request->setLaravelSession(
$session = $this->startSession($request)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
// Again, if the session has been configured we will need to close out the session
// so that the attributes may be persisted to some storage medium. We will also
// add the session identifier cookie to the application response headers now.
$this->saveSession($request);
return $response;
}
/**
* Start the session for the given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Contracts\Session\Session
*/
protected function startSession(Request $request)
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#258 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php
* Create a new CookieQueue instance.
*
* @param \Illuminate\Contracts\Cookie\QueueingFactory $cookies
* @return void
*/
public function __construct(CookieJar $cookies)
{
$this->cookies = $cookies;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
return $response;
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#259 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php
* Disable encryption for the given cookie name(s).
*
* @param string|array $name
* @return void
*/
public function disableFor($name)
{
$this->except = array_merge($this->except, (array) $name);
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @return \Symfony\Component\HttpFoundation\Request
*/
protected function decrypt(Request $request)
{
foreach ($request->cookies as $key => $cookie) {
if ($this->isDisabled($key)) {
continue;
}
try {
$request->cookies->set($key, $this->decryptCookie($key, $cookie));
} catch (DecryptException $e) {
$request->cookies->set($key, null);
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#260 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
* Sort the given middleware by priority.
*
Arguments
Closure($request) {#234 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
return $route;
}
/**
* Return the response for the given route.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
protected function runRoute(Request $request, Route $route)
{
$request->setRouteResolver(function () use ($route) {
return $route;
});
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
Arguments
Route {#181}
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
$this->container->instance(Route::class, $route);
return $route;
}
/**
* Return the response for the given route.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Route {#181}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function respondWithRoute($name)
{
$route = tap($this->routes->getByName($name))->bind($this->currentRequest);
return $this->runRoute($this->currentRequest, $route);
}
/**
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/fideloper/proxy/src/TrustProxies.php
{
$this->config = $config;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
$request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request to the value of trustedproxy.proxies
*
* @param \Illuminate\Http\Request $request
*/
protected function setTrustedProxyIpAddresses(Request $request)
{
$trustedIps = $this->proxies ?: $this->config->get('trustedproxy.proxies');
// Trust any IP address that calls us
// `**` for backwards compatibility, but is deprecated
if ($trustedIps === '*' || $trustedIps === '**') {
return $this->setTrustedProxyIpAddressesToTheCallingIp($request);
}
// Support IPs addresses separated by comma
$trustedIps = is_string($trustedIps) ? array_map('trim', explode(',', $trustedIps)) : $trustedIps;
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#158 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
namespace Illuminate\Foundation\Http\Middleware;
use Closure;
use Symfony\Component\HttpFoundation\ParameterBag;
class TransformsRequest
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} elseif ($request->request !== $request->query) {
$this->cleanParameterBag($request->request);
}
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#205 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
namespace Illuminate\Foundation\Http\Middleware;
use Closure;
use Symfony\Component\HttpFoundation\ParameterBag;
class TransformsRequest
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} elseif ($request->request !== $request->query) {
$this->cleanParameterBag($request->request);
}
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#206 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
class ValidatePostSize
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Http\Exceptions\PostTooLargeException
*/
public function handle($request, Closure $next)
{
$max = $this->getPostMaxSize();
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
* @return int
*/
protected function getPostMaxSize()
{
if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
return (int) $postMaxSize;
}
$metric = strtoupper(substr($postMaxSize, -1));
$postMaxSize = (int) $postMaxSize;
switch ($metric) {
case 'K':
return $postMaxSize * 1024;
case 'M':
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#207 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
if (isset($data['allowed']) && IpUtils::checkIp($request->ip(), (array) $data['allowed'])) {
return $next($request);
}
if ($this->inExceptArray($request)) {
return $next($request);
}
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
/**
* Determine if the request has a URI that should be accessible in maintenance mode.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function inExceptArray($request)
{
foreach ($this->except as $except) {
if ($except !== '/') {
$except = trim($except, '/');
}
if ($request->fullUrlIs($except) || $request->is($except)) {
return true;
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#208 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
Arguments
Closure($request) {#45 …4}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
$router->middlewareGroup($key, $middleware);
}
foreach ($this->routeMiddleware as $key => $middleware) {
$router->aliasMiddleware($key, $middleware);
}
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new Events\RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/index.php
$app->bind('path.public', function() {
return __DIR__;
});
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#225 …5}
#routeResolver: Closure() {#227 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/sk/person/1197172"
#requestUri: "/-/sk/person/1197172"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#272}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}