- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
/**
* Returns the first line of docblock.
*
* @param \Reflector $reflection
* @return string
*/
protected function parseDocCommentSummary($reflection)
{
$docLines = preg_split('~\R~u', $reflection->getDocComment());
if (isset($docLines[1])) {
return trim($docLines[1], "\t *");
}
return '';
}
/**
* Returns full description from the docblock.
*
* @param \Reflector $reflection
* @return string
*/
protected function parseDocCommentDetail($reflection)
{
$comment = strtr(trim(preg_replace('/^\s*\**( |\t)?/m', '', trim($reflection->getDocComment(), '/'))), "\r", '');
if (preg_match('/^\s*@\w+/m', $comment, $matches, PREG_OFFSET_CAPTURE)) {
$comment = trim(substr($comment, 0, $matches[0][1]));
}
if ($comment !== '') {
return rtrim(Console::renderColoredString(Console::markdownToAnsi($comment)));
}
return '';
}
Yii2, SOLID, очередной класс консольного приложения, который делает все подряд и хуево
https://github.com/yiisoft/yii2/blob/47bcd020fff582395db8fe9e00598acad0257922/framework/console/Controller.php#L481-L512
Fike 29.05.2015 05:52 # 0
что?
bormand 29.05.2015 07:07 # 0
Fike 29.05.2015 09:22 # 0
bormand 29.05.2015 09:38 # 0
Fike 29.05.2015 18:16 # 0
laMer007 29.05.2015 18:20 # +1
Я вижу Мать свою
Я вижу сестер и братьев, и предков своих
Весь Род свой до самого начала
Они зовут меня занять Свое место
Они призывают меня к Себе, в Вальхаллу,
Где герои пируют Вечно!
Stertor 29.05.2015 18:46 # 0
laMer007 29.05.2015 19:29 # −1
kegdan 29.05.2015 21:32 # −1
Stallman 29.05.2015 09:36 # −1
Такова концепция самого пхп. Смирись.