Lines Matching refs:return

60      * @return int
64 return $this->level = $level;
68 * @return string
72 return $this->level ?: 'WARNING';
77 * @return bool
86 return false;
90 return $this->error("Unexpected truncated message: {$line}");
95 return $this->error("The truncated line is not ended with '...'");
98 return false;
104 return $this->error("The line is complete and should not end with '...'");
107 return false;
111 return true;
118 * @return bool
151 return $this->error("Unexpected line: $line");
154 return $this->error(
161 return $this->expectTerminatorLines($lines, $idx);
164 return true;
169 * @return bool
181 return $this->error("Unexpected line: $line");
187 return false;
190 return false;
196 return $this->error("Printed less than the message len");
198 return $this->error(
203 return true;
206 return $this->error("Printed more than the message len");
209 return false;
212 return $this->error("No final suffix");
215 return $this->error("The final suffix has to be equal to ', pipe is closed'");
221 return false;
227 * @return bool
232 return $this->error(
237 return true;
243 * @return bool
253 return $this->error(
264 return true;
269 * @return bool
274 return false;
278 return $this->error("No starting lines");
281 return (
290 * @return bool
295 return false;
299 return $this->error("No terminating lines");
302 return (
313 * @return bool
318 return false;
328 return $this->error(
337 return true;
344 * @return bool
348 return $this->expectEntry('DEBUG', $line, $expectedMessage, $pool);
355 * @return bool
359 return $this->expectEntry('NOTICE', $line, $expectedMessage, $pool);
366 * @return bool
370 return $this->expectEntry('WARNING', $line, $expectedMessage, $pool);
377 * @return bool
381 return $this->expectEntry('ERROR', $line, $expectedMessage, $pool);
388 * @return bool
392 return $this->expectEntry('ALERT', $line, $expectedMessage, $pool);
398 * @return bool
404 return false;
408 * @return string
412 return $this->error;