ILIAS
release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
◀ ilDoc Overview
Handler.php
Go to the documentation of this file.
1
<?php
7
namespace
Whoops\Handler
;
8
9
use
Exception
;
10
use
Whoops\Exception\Inspector
;
11
use
Whoops\Run
;
12
16
abstract
class
Handler
implements
HandlerInterface
17
{
22
const
DONE
= 0x10;
// returning this is optional, only exists for
23
// semantic purposes
24
const
LAST_HANDLER
= 0x20;
25
const
QUIT
= 0x30;
26
30
private
$run
;
31
35
private
$inspector
;
36
40
private
$exception
;
41
45
public
function
setRun
(
Run
$run
)
46
{
47
$this->run =
$run
;
48
}
49
53
protected
function
getRun
()
54
{
55
return
$this->run
;
56
}
57
61
public
function
setInspector
(
Inspector
$inspector
)
62
{
63
$this->inspector =
$inspector
;
64
}
65
69
protected
function
getInspector
()
70
{
71
return
$this->inspector
;
72
}
73
77
public
function
setException
(
Exception
$exception
)
78
{
79
$this->exception =
$exception
;
80
}
81
85
protected
function
getException
()
86
{
87
return
$this->exception
;
88
}
89
}
Whoops\Handler\Handler\setException
setException(Exception $exception)
Definition:
Handler.php:77
Whoops\Handler\Handler\$exception
$exception
Definition:
Handler.php:40
Whoops\Handler\HandlerInterface
Definition:
HandlerInterface.php:13
Whoops\Handler
Whoops - php errors for cool kids.
Definition:
CallbackHandler.php:7
Whoops\Handler\Handler\getRun
getRun()
Definition:
Handler.php:53
Whoops\Handler\Handler\setRun
setRun(Run $run)
Definition:
Handler.php:45
Whoops\Handler\Handler\getException
getException()
Definition:
Handler.php:85
Whoops\Run
Definition:
Run.php:17
Whoops\Handler\Handler\$run
$run
Definition:
Handler.php:30
Run
Inspector
Whoops\Handler\Handler\DONE
const DONE
Return constants that can be returned from Handler::handle to message the handler walker...
Definition:
Handler.php:22
Whoops\Exception\Inspector
Definition:
Inspector.php:11
Whoops\Handler\Handler\QUIT
const QUIT
Definition:
Handler.php:25
Whoops\Handler\Handler\getInspector
getInspector()
Definition:
Handler.php:69
Whoops\Handler\Handler\LAST_HANDLER
const LAST_HANDLER
Definition:
Handler.php:24
Whoops\Handler\Handler
Abstract implementation of a Handler.
Definition:
Handler.php:16
Whoops\Handler\Handler\setInspector
setInspector(Inspector $inspector)
Definition:
Handler.php:61
Whoops\Handler\Handler\$inspector
$inspector
Definition:
Handler.php:35
Exception
Services
Exceptions
lib
Whoops
Handler
Handler.php
Generated on Wed Aug 27 2025 19:00:53 for ILIAS by
1.8.13 (using
Doxyfile
)