Refactoring #8: What is dead may never run

Geni Jaho
4 min readSep 4, 2022

It’s important to take a good look at your code and clean up when you’re done with it. Once in a while, we tend to forget this little detail and just move on, leaving behind trails of unreachable statements.

Here’s a very blatant example of a dead piece of code.

The last line above will never execute, and while this type of code looks like a very rare occurrence, it still shows up a lot. There is this automated tool called Rector that is fantastic at finding dead code like this and removing it, or letting you know of its existence.

Rector also unearths other dead code that is not completely obvious at first sight. This one below is very common, actually.

The PHPDoc is expressing the same information that is clearly stated in the method declaration. A dev can easily see that the method needs a GeocoderInterface object, the extra comment does not tell more than that. Same for an IDE, you will get the autocomplete you need without the comment.

PHPDocs can be liars in disguise

One more thing I don’t like about these redundant docs is that they often ‘lie’. Take this for example:

This keeps me up at night. This Eloquent relation has a return type of BelongsTo, but if you use it as a method $post->user() somewhere in code, the IDE will wrongly suggest you autocomplete options that belong to an Eloquent Model. It will be fun trying to find these bugs when they happen in runtime, so just remove the comment entirely.

If you find yourself doing this often because you want some more autocomplete options when accessing the actual model $post->user, consider annotating it, like this:

Laravel’s default stubs

Another piece of dead code is the Laravel framework’s default stubs. They’re there so we can easily input our dependencies. What do we do if we don’t have any? Nothing, we just leave it there, because we’re lazy.

No harm in keeping them, but if you’re not injecting anything, frankly, wipe these suckers from the face of the earth, they’re just taking valuable space and pushing the real code down below. You can also change the default stubs by running php artisan stub:publish.

Conditions that are always true

Dead code candidate #4 is tricky. Usually, it’s safe to remove the redundant check like in this simple case:

However, there may be cases where a check like that is needed if there’s stuff happening behind the scenes, like in this uninspired example:

A tool like Rector won’t magically understand the underlying sorcery that is happening and will simply suggest removing the last condition. To silence it, simply add this comment:

That’s it for the dead code. You killed it. I’ve also posted about other spells Rector can cast for you, like using updated syntax from PHP 8.1 and above, auto-importing class names in the whole codebase, etc. Check out their site, they add refactorings weekly 🏠🔥.

--

--

Geni Jaho

Full-stack web developer with a passion for software architecture and programming best practices.