The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
23
{
24
19
return $this->isStrict;
25
}
26
27
13
public function setIsStrict($isStrict = true)
28
{
29
13
$this->isStrict = boolval($isStrict);
30
13
return $this;
31
}
32
33
/**
34
* Throws an exception if no records are found / affected
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.