Total Complexity | 6 |
Total Lines | 58 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class EntityLogNotification extends EntityNotification implements LogNotification |
||
24 | { |
||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $message; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $level; |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getMessage() |
||
39 | { |
||
40 | return $this->message; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @param string $message |
||
45 | */ |
||
46 | public function setMessage($message) |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function getLevel() |
||
55 | { |
||
56 | return $this->level; |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * @param string $level |
||
61 | */ |
||
62 | public function setLevel($level) |
||
63 | { |
||
64 | $this->level = $level; |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public static function getProcessorClassName() |
||
73 | } |
||
74 | |||
75 | /** |
||
76 | * @return string |
||
77 | */ |
||
78 | public static function getDefinitionIdentifier() |
||
83 |