Lines Matching refs:return

72      * @return int
76 return $this->level = $level;
80 * @return string
84 return $this->level ?: 'WARNING';
97 * @return bool
106 return false;
110 return $this->error("Unexpected truncated message: {$line}");
115 return $this->error("The truncated line is not ended with '...'");
118 return false;
124 return $this->error("The line is complete and should not end with '...'");
127 return false;
131 return true;
138 * @return bool
171 return $this->error("Unexpected line: $line");
174 return $this->error(
181 return $this->expectTerminatorLines($lines, $idx);
184 return true;
189 * @return bool
201 return $this->error("Unexpected line: $line");
207 return false;
210 return false;
216 return $this->error("Printed less than the message len");
218 return $this->error(
223 return true;
226 return $this->error("Printed more than the message len");
229 return false;
232 return $this->error("No final suffix");
235 return $this->error("The final suffix has to be equal to ', pipe is closed'");
241 return false;
247 * @return bool
252 return $this->error(
257 return true;
263 * @return bool
273 return $this->error(
284 return true;
289 * @return bool
297 return false;
302 return false;
306 return $this->expectStartingLines(array_splice($lines, $i));
311 * @return bool
316 return false;
320 return $this->error("No starting lines");
323 return (
332 * @return bool
337 return false;
341 return $this->error("No terminating lines");
344 return (
355 * @return bool
360 return false;
370 return $this->error(
379 return true;
386 * @return bool
390 return $this->expectEntry(self::DEBUG, $line, $expectedMessage, $pool);
397 * @return bool
401 return $this->expectEntry(self::NOTICE, $line, $expectedMessage, $pool);
408 * @return bool
412 return $this->expectEntry(self::WARNING, $line, $expectedMessage, $pool);
419 * @return bool
423 return $this->expectEntry(self::ERROR, $line, $expectedMessage, $pool);
430 * @return bool
434 return $this->expectEntry(self::ALERT, $line, $expectedMessage, $pool);
439 * @return bool
445 return false;
449 * @return string
453 return $this->error;