Reading List
Clean code has room to breath from Sebastian De Deyne RSS feed.
Clean code has room to breath
Timeless advice from Freek & Brent.
Just like reading text, grouping code in paragraphs can be helpful to improve its readability. We like to say we add some “breathing space” to our code.
$page = $this->pages()->where('slug', $url)->first();
if (! $page) {
throw new Exception();
}
$page = $this->pages()->where('slug', $url)->first();
if (! $page) {
throw new Exception();
}
Just one line of space can make the difference.