Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Just to be clear, almost everything is written in this 2k line file like this. For example arrays:
$array = [
'a' => 'value',
'b' => 'other value'
]; -
C0D4668816yThis is why I believe people should learn an indentation based language first or just read the god damn PSRs.
Related Rants
Thank God for Ctrl+Alt+L in PHPStorm...one guy from our company seemed to like this code style once upon a time:
if ($variable > 0)
{
// stuff
}
else
{
// other stuff
}
rant
very readable
too much on the screen
coding style