Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17233 программиста и 1835 роботов. Сейчас ищут 1558 программистов ...
Alignment of function parameters
Вернуться к: Coding standard enhancements
Alignment of function parameters
To support readability, parameters in subsequent calls to the same function/method may be aligned by parameter name:
<?php
$this->callSomeFunction('param1', 'second', true);
$this->callSomeFunction('parameter2', 'third', false);
$this->callSomeFunction('3', 'verrrrrrylong', true);
?>
Вернуться к: Coding standard enhancements