| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class OperatorWhitespaceFixer extends AbstractFixer |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var LineFixer|null |
||
| 18 | */ |
||
| 19 | private $lineFixer; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * OperatorWhitespaceFixer constructor. |
||
| 23 | * |
||
| 24 | * @param FileBuilder $fileBuilder |
||
| 25 | * @param LineFixer|null $lineFixer |
||
| 26 | */ |
||
| 27 | public function __construct(FileBuilder $fileBuilder = null, LineFixer $lineFixer = null) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param File $file |
||
| 35 | * @param AbstractIssue $issue |
||
| 36 | * |
||
| 37 | * @return File |
||
| 38 | */ |
||
| 39 | public function fixIssue(File $file, AbstractIssue $issue): File |
||
| 51 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.