This check compares the return type specified in the @return annotation of a function
or method doc comment with the types returned by the function and raises an issue if they
mismatch.
Loading history...
37
*/
38
public function setWriteCookieCallable(callable $callable): self;
39
40
/**
41
* @return callable
42
*/
43
public function getWriteRawCookieCallable(): callable;
This check compares the return type specified in the @return annotation of a function
or method doc comment with the types returned by the function and raises an issue if they
mismatch.
Loading history...
49
*/
50
public function setWriteRawCookieCallable(callable $callable): self;
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.