@@ -62,13 +62,16 @@ |
||
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Return true if the parameter is of type 'formData' |
65 | - * @return type |
|
65 | + * @return boolean |
|
66 | 66 | */ |
67 | 67 | public function isForm() |
68 | 68 | { |
69 | 69 | return $this->in === 'form'; |
70 | 70 | } |
71 | 71 | |
72 | + /** |
|
73 | + * @param string $in |
|
74 | + */ |
|
72 | 75 | public function __construct(AbstractObject $parent, $in, $data, $required = false) |
73 | 76 | { |
74 | 77 | parent::__construct($parent); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | /** |
74 | 74 | * @param string $file |
75 | 75 | * @param string[] $dirs |
76 | - * @return Php\Entity\Statement[] |
|
76 | + * @return Statement[] |
|
77 | 77 | */ |
78 | 78 | private function parseTextFile($file, $dirs) |
79 | 79 | { |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
85 | - * @param string $file |
|
86 | 85 | * @param string[] $dirs |
86 | + * @param string $text |
|
87 | 87 | * @return Php\Entity\Statement[] |
88 | 88 | */ |
89 | 89 | private function parseText($text, $dirs) |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | |
158 | 158 | $stacktrace = array(); |
159 | 159 | foreach ($stack as $object) { |
160 | - $stacktrace[] = (string)$object; |
|
160 | + $stacktrace[] = (string) $object; |
|
161 | 161 | } |
162 | 162 | $messages[] = join(", \n", $stacktrace); |
163 | 163 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | break; |
175 | 175 | |
176 | 176 | case self::FORMAT_JSON_PRETTY: |
177 | - $flags = (defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : 0); // Since PHP 5.4.0 |
|
177 | + $flags = (defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : 0); // Since PHP 5.4.0 |
|
178 | 178 | $output = json_encode($output, $flags); |
179 | 179 | break; |
180 | 180 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | if (!$this->handle($match[1], $match[2]) && $this->getState()) { |
59 | 59 | $output .= $line; |
60 | 60 | } else { |
61 | - $output .= str_replace('@'.$this->getPrefix(), '!'.$this->getPrefix(), $line); |
|
61 | + $output .= str_replace('@' . $this->getPrefix(), '!' . $this->getPrefix(), $line); |
|
62 | 62 | } |
63 | 63 | } else { |
64 | 64 | $output .= $line; |
@@ -153,9 +153,9 @@ |
||
153 | 153 | $commandLineNumber = $lineNumber; |
154 | 154 | } elseif ($command) { |
155 | 155 | if ($lineNumber < count($commentLines) - 1) { |
156 | - $data.= ' ' . $line; |
|
156 | + $data .= ' ' . $line; |
|
157 | 157 | } else { |
158 | - $data.= preg_replace('~\s*\**\/\s*$~', '', $line); |
|
158 | + $data .= preg_replace('~\s*\**\/\s*$~', '', $line); |
|
159 | 159 | } |
160 | 160 | } |
161 | 161 | } |
@@ -35,6 +35,9 @@ |
||
35 | 35 | return $this->consumes; |
36 | 36 | } |
37 | 37 | |
38 | + /** |
|
39 | + * @param string $summary |
|
40 | + */ |
|
38 | 41 | public function __construct(AbstractObject $parent, $summary = null, Tag $tag = null) |
39 | 42 | { |
40 | 43 | parent::__construct($parent); |