View on GitHub

RefactoringPHP

A PHP version of the refactors from Refactoring: Improving the Design of Existing Code (Second Edition) by Martin Fowler

Remove Dead Code (237)

Old Code

<?php
if (false) {
    doSomethingThatUsedToMatter();
}

New Code

<?php