Home
last modified time | relevance | path

Searched refs:message (Results 1 – 5 of 5) sorted by relevance

/PHP-Parser/
H A Dphpstan-baseline.neon64 message: "#^Unary operation \"~\" on mixed results in an error\\.$#"
89 message: "#^Call to function assert\\(\\) with false will always evaluate to false\\.$#"
114 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$attrGroups\\.$#"
119 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$name\\.$#"
124 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$namespacedName\\.$#"
179message: "#^Access to undefined constant static\\(PhpParser\\\\ParserAbstract\\)\\:\\:T_ECHO\\.$#"
184message: "#^Access to undefined constant static\\(PhpParser\\\\ParserAbstract\\)\\:\\:T_ENUM\\.$#"
189 message: "#^Access to undefined constant static\\(PhpParser\\\\ParserAbstract\\)\\:\\:T_FN\\.$#"
194message: "#^Access to undefined constant static\\(PhpParser\\\\ParserAbstract\\)\\:\\:T_MATCH\\.$#"
229 message: "#^Unary operation \"\\+\" on string results in an error\\.$#"
[all …]
/PHP-Parser/lib/PhpParser/
H A DError.php13 * @param string $message Error message
16 public function __construct(string $message, array $attributes = []) { argument
17 $this->rawMessage = $message;
73 * @param string $message Error message
75 public function setRawMessage(string $message): void { argument
76 $this->rawMessage = $message;
165 $this->message = $this->rawMessage;
168 $this->message .= ' on unknown line';
170 $this->message .= ' on line ' . $this->getStartLine();
/PHP-Parser/bin/
H A Dphp-parse60 $message = formatErrorMessage($error, $code, $attributes['with-column-info']); variable
61 fwrite(STDERR, $message . "\n");
70 $message = formatErrorMessage($error, $code, $attributes['with-column-info']); variable
71 fwrite(STDERR, $message . "\n");
/PHP-Parser/doc/component/
H A DError_handling.markdown5 message, an error can also store additional information about the location the error occurred at.
/PHP-Parser/test/PhpParser/
H A DNodeTraverserTest.php418 public function testInvalidReturn($stmts, $visitor, $message): void { argument
420 $this->expectExceptionMessage($message);

Completed in 28 milliseconds