We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dcc75fb + 49e741a commit d95b2b7Copy full SHA for d95b2b7
1 file changed
src/Whoops/Handler/PlainTextHandler.php
@@ -159,12 +159,12 @@ public function addTraceFunctionArgsToOutput($addTraceFunctionArgsToOutput = nul
159
* Set the size limit in bytes of frame arguments var_dump output.
160
* If the limit is reached, the var_dump output is discarded.
161
* Prevent memory limit errors.
162
- * @var integer
+ * @param int $traceFunctionArgsOutputLimit
163
* @return static
164
*/
165
public function setTraceFunctionArgsOutputLimit($traceFunctionArgsOutputLimit)
166
{
167
- $this->traceFunctionArgsOutputLimit = (integer) $traceFunctionArgsOutputLimit;
+ $this->traceFunctionArgsOutputLimit = (int) $traceFunctionArgsOutputLimit;
168
return $this;
169
}
170
0 commit comments