Is it allowed to assign multiple variables on the same line in PSR-12?
For example:
$count = $score = 0;
Advertisement
Answer
Yes. If it’s not explicitly stated, then there is no standard. Either works.
Also, chain assignment like that just makes the code cleaner so I personally would not see a reason to why it should not be allowed.