I want to know how interpreter reads the instructions and end-symbol of it (;)
I tried to do some tests, but my hardware is not so sensitive to see the difference
For example, i have:
$someObject->firstAction()->secondAction()->thirdAction();
How the interpreter will behave if i do this:
$someObject
->firstAction()
->secondAction()
->thirdAction()
;
I want to find out if similar "beautiful" code formatting adversely affects?