1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */
namespace Whoops\Handler;
use Whoops\Exception\Inspector; use Whoops\Run;
/** * Abstract implementation of a Handler. */ abstract class Handler implements HandlerInterface { /** * Return constants that can be returned from Handler::handle * to message the handler walker. */ const DONE = 0x10; // returning this is optional, only exists for // semantic purposes const LAST_HANDLER = 0x20; const QUIT = 0x30;
/** * @var Run */ private $run;
/** * @var Inspector $inspector */ private $inspector;
/** * @var \Throwable $exception */ private $exception;
/** * @param Run $run */ public function setRun(Run $run) { $this->run = $run; }
/** * @return Run */ protected function getRun() { return $this->run; }
/** * @param Inspector $inspector */ public function setInspector(Inspector $inspector) { $this->inspector = $inspector; }
/** * @return Inspector */ protected function getInspector() { return $this->inspector; }
/** * @param \Throwable $exception */ public function setException($exception) { $this->exception = $exception; }
/** * @return \Throwable */ protected function getException() { return $this->exception; } }
|