@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | protected function processCommandTag($tag) |
| 63 | 63 | { |
| 64 | 64 | if (!$tag->hasWordAndDescription($matches)) { |
| 65 | - throw new \Exception('Could not determine command name from tag ' . (string)$tag); |
|
| 65 | + throw new \Exception('Could not determine command name from tag '.(string)$tag); |
|
| 66 | 66 | } |
| 67 | 67 | $commandName = $matches['word']; |
| 68 | 68 | $this->commandInfo->setName($commandName); |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | protected function processArgumentTag($tag) |
| 90 | 90 | { |
| 91 | 91 | if (!$tag->hasVariable($matches)) { |
| 92 | - throw new \Exception('Could not determine argument name from tag ' . (string)$tag); |
|
| 92 | + throw new \Exception('Could not determine argument name from tag '.(string)$tag); |
|
| 93 | 93 | } |
| 94 | 94 | if ($matches['variable'] == $this->optionParamName()) { |
| 95 | 95 | return; |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | protected function processOptionTag($tag) |
| 104 | 104 | { |
| 105 | 105 | if (!$tag->hasVariable($matches)) { |
| 106 | - throw new \Exception('Could not determine option name from tag ' . (string)$tag); |
|
| 106 | + throw new \Exception('Could not determine option name from tag '.(string)$tag); |
|
| 107 | 107 | } |
| 108 | 108 | $this->addOptionOrArgumentTag($tag, $this->commandInfo->options(), $matches['variable'], $matches['description']); |
| 109 | 109 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | protected function processDefaultTag($tag) |
| 123 | 123 | { |
| 124 | 124 | if (!$tag->hasVariable($matches)) { |
| 125 | - throw new \Exception('Could not determine parameter name for default value from tag ' . (string)$tag); |
|
| 125 | + throw new \Exception('Could not determine parameter name for default value from tag '.(string)$tag); |
|
| 126 | 126 | } |
| 127 | 127 | $variableName = $matches['variable']; |
| 128 | 128 | $defaultValue = $this->interpretDefaultValue($matches['description']); |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | { |
| 144 | 144 | $lines = explode("\n", $tag->getContent()); |
| 145 | 145 | $usage = trim(array_shift($lines)); |
| 146 | - $description = static::removeLineBreaks(implode("\n", array_map(function ($line) { |
|
| 146 | + $description = static::removeLineBreaks(implode("\n", array_map(function($line) { |
|
| 147 | 147 | return trim($line); |
| 148 | 148 | }, $lines))); |
| 149 | 149 | |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | protected function processReturnTag($tag) |
| 165 | 165 | { |
| 166 | 166 | if (!$tag->hasWordAndDescription($matches)) { |
| 167 | - throw new \Exception('Could not determine return type from tag ' . (string)$tag); |
|
| 167 | + throw new \Exception('Could not determine return type from tag '.(string)$tag); |
|
| 168 | 168 | } |
| 169 | 169 | // Look at namespace and `use` statments to make returnType a fqdn |
| 170 | 170 | $returnType = $matches['word']; |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | // Trim all of the lines individually. |
| 215 | 215 | $lines = |
| 216 | 216 | array_map( |
| 217 | - function ($line) { |
|
| 217 | + function($line) { |
|
| 218 | 218 | return trim($line); |
| 219 | 219 | }, |
| 220 | 220 | $lines |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | // Everything up to the first blank line goes in the description. |
| 224 | 224 | $description = array_shift($lines); |
| 225 | 225 | while ($this->nextLineIsNotEmpty($lines)) { |
| 226 | - $description .= ' ' . array_shift($lines); |
|
| 226 | + $description .= ' '.array_shift($lines); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | // Everything else goes in the help. |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public static function splitTagAndContent($subject, &$matches) |
| 47 | 47 | { |
| 48 | - $regex = '/' . self::TAG_REGEX . self::DESCRIPTION_REGEX . '/s'; |
|
| 48 | + $regex = '/'.self::TAG_REGEX.self::DESCRIPTION_REGEX.'/s'; |
|
| 49 | 49 | return preg_match($regex, $subject, $matches); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function __toString() |
| 94 | 94 | { |
| 95 | - return '@' . $this->getTag() . ' ' . $this->getContent(); |
|
| 95 | + return '@'.$this->getTag().' '.$this->getContent(); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function hasVariableAndDescription(&$matches) |
| 124 | 124 | { |
| 125 | - $regex = '/^\s*' . self::VARIABLE_OR_WORD_REGEX . self::DESCRIPTION_REGEX . '/s'; |
|
| 125 | + $regex = '/^\s*'.self::VARIABLE_OR_WORD_REGEX.self::DESCRIPTION_REGEX.'/s'; |
|
| 126 | 126 | return preg_match($regex, $this->getContent(), $matches); |
| 127 | 127 | } |
| 128 | 128 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | public function hasTypeVariableAndDescription(&$matches) |
| 138 | 138 | { |
| 139 | - $regex = '/^\s*' . self::TYPE_REGEX . self::VARIABLE_REGEX . self::DESCRIPTION_REGEX . '/s'; |
|
| 139 | + $regex = '/^\s*'.self::TYPE_REGEX.self::VARIABLE_REGEX.self::DESCRIPTION_REGEX.'/s'; |
|
| 140 | 140 | return preg_match($regex, $this->getContent(), $matches); |
| 141 | 141 | } |
| 142 | 142 | |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | public function hasWordAndDescription(&$matches) |
| 151 | 151 | { |
| 152 | - $regex = '/^\s*' . self::WORD_REGEX . self::DESCRIPTION_REGEX . '/s'; |
|
| 152 | + $regex = '/^\s*'.self::WORD_REGEX.self::DESCRIPTION_REGEX.'/s'; |
|
| 153 | 153 | return preg_match($regex, $this->getContent(), $matches); |
| 154 | 154 | } |
| 155 | 155 | } |