DuplicateParam
March 21, 2020 ยท View on GitHub
Emitted when a function has a param defined twice
<?php
function foo(int $b, string $b) {}
Why this is bad
The above code produces a fatal error in PHP.
March 21, 2020 ยท View on GitHub
Emitted when a function has a param defined twice
<?php
function foo(int $b, string $b) {}
The above code produces a fatal error in PHP.