@return self

This commit is contained in:
Simon Podlipsky 2018-07-10 01:19:30 +03:00
parent ec2ff0d4bf
commit 1b42de0658
No known key found for this signature in database
GPG Key ID: 725C2BD962B42663
3 changed files with 4 additions and 4 deletions

View File

@ -78,7 +78,7 @@ class ExecutionResult implements \JsonSerializable
* ); * );
* *
* @api * @api
* @return $this * @return self
*/ */
public function setErrorFormatter(callable $errorFormatter) public function setErrorFormatter(callable $errorFormatter)
{ {
@ -98,7 +98,7 @@ class ExecutionResult implements \JsonSerializable
* } * }
* *
* @api * @api
* @return $this * @return self
*/ */
public function setErrorsHandler(callable $handler) public function setErrorsHandler(callable $handler)
{ {

View File

@ -48,7 +48,7 @@ abstract class Node
} }
/** /**
* @return $this * @return self
*/ */
public function cloneDeep() public function cloneDeep()
{ {

View File

@ -690,7 +690,7 @@ class Lexer
* *
* @param $positionOffset * @param $positionOffset
* @param $byteStreamOffset * @param $byteStreamOffset
* @return $this * @return self
*/ */
private function moveStringCursor($positionOffset, $byteStreamOffset) private function moveStringCursor($positionOffset, $byteStreamOffset)
{ {