Lines Matching refs:method

12  * @method bool hasEmergency($record)
13 * @method bool hasAlert($record)
14 * @method bool hasCritical($record)
15 * @method bool hasError($record)
16 * @method bool hasWarning($record)
17 * @method bool hasNotice($record)
18 * @method bool hasInfo($record)
19 * @method bool hasDebug($record)
21 * @method bool hasEmergencyRecords()
22 * @method bool hasAlertRecords()
23 * @method bool hasCriticalRecords()
24 * @method bool hasErrorRecords()
25 * @method bool hasWarningRecords()
26 * @method bool hasNoticeRecords()
27 * @method bool hasInfoRecords()
28 * @method bool hasDebugRecords()
30 * @method bool hasEmergencyThatContains($message)
31 * @method bool hasAlertThatContains($message)
32 * @method bool hasCriticalThatContains($message)
33 * @method bool hasErrorThatContains($message)
34 * @method bool hasWarningThatContains($message)
35 * @method bool hasNoticeThatContains($message)
36 * @method bool hasInfoThatContains($message)
37 * @method bool hasDebugThatContains($message)
39 * @method bool hasEmergencyThatMatches($message)
40 * @method bool hasAlertThatMatches($message)
41 * @method bool hasCriticalThatMatches($message)
42 * @method bool hasErrorThatMatches($message)
43 * @method bool hasWarningThatMatches($message)
44 * @method bool hasNoticeThatMatches($message)
45 * @method bool hasInfoThatMatches($message)
46 * @method bool hasDebugThatMatches($message)
48 * @method bool hasEmergencyThatPasses($message)
49 * @method bool hasAlertThatPasses($message)
50 * @method bool hasCriticalThatPasses($message)
51 * @method bool hasErrorThatPasses($message)
52 * @method bool hasWarningThatPasses($message)
53 * @method bool hasNoticeThatPasses($message)
54 * @method bool hasInfoThatPasses($message)
55 * @method bool hasDebugThatPasses($message)
129 public function __call($method, $args)
131 if (preg_match('/(.*)(Debug|Info|Notice|Warning|Error|Critical|Alert|Emergency)(.*)/', $method, $matches) > 0) {
139 throw new \BadMethodCallException('Call to undefined method ' . get_class($this) . '::' . $method . '()');