Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PSR-12 是否对方法链接建立了任何限制?根据标准,以下两个选项是否同样有效?
选项1:
$object->methodA()->methodB()->methodC()->methodD();
选项 2:
$object->methodA() ->methodB() ->methodC() ->methodD();