Passed
Pull Request — master (#102)
by Sébastien
03:51
created
src/Karma/Command/ConfigureActionCommand.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -30,6 +30,11 @@  discard block
 block discarded – undo
30 30
     protected
31 31
         $environment;
32 32
 
33
+    /**
34
+     * @param string $name
35
+     * @param string $description
36
+     * @param string $outputTitle
37
+     */
33 38
     public function __construct(Application $app, $name, $description, $outputTitle)
34 39
     {
35 40
         $this->name = $name;
@@ -128,6 +133,10 @@  discard block
 block discarded – undo
128 133
     }
129 134
 
130 135
     abstract protected function launchConfigurationAction(ConfigurableProcessor $processor);
136
+
137
+    /**
138
+     * @return ConfigurableProcessor
139
+     */
131 140
     abstract protected function getProcessor();
132 141
 
133 142
     private function configureProcessor(ConfigurableProcessor $processor)
@@ -153,6 +162,9 @@  discard block
 block discarded – undo
153 162
         }
154 163
     }
155 164
 
165
+    /**
166
+     * @param string $optionName
167
+     */
156 168
     private function parseOptionWithAssignments(InputInterface $input, $optionName)
157 169
     {
158 170
         $strings = $input->getOption($optionName);
Please login to merge, or discard this patch.
src/Karma/Configuration/Parser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -199,6 +199,9 @@
 block discarded – undo
199 199
         return $sectionName;
200 200
     }
201 201
 
202
+    /**
203
+     * @param string $sectionName
204
+     */
202 205
     private function switchSectionParser($sectionName)
203 206
     {
204 207
         if(! isset($this->parsers[$sectionName]))
Please login to merge, or discard this patch.
src/Karma/Configuration/ValueFilterIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
         $isRegex,
15 15
         $filter;
16 16
 
17
+    /**
18
+     * @param string $filter
19
+     */
17 20
     public function __construct($filter, \Iterator $iterator)
18 21
     {
19 22
         parent::__construct($iterator);
Please login to merge, or discard this patch.
src/Karma/Hydrator.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -158,6 +158,9 @@  discard block
 block discarded – undo
158 158
         $this->hydratedFiles[] = $this->currentTargetFile;
159 159
     }
160 160
 
161
+    /**
162
+     * @param string|boolean $fileContent
163
+     */
161 164
     private function parseFileDirectives($file, & $fileContent, $environment)
162 165
     {
163 166
         $this->currentFormatterName = null;
@@ -232,6 +235,9 @@  discard block
 block discarded – undo
232 235
         }
233 236
     }
234 237
 
238
+    /**
239
+     * @param string $delimiter
240
+     */
235 241
     private function generateContentForListDirective($variable, $environment, $delimiter, array $wrapper)
236 242
     {
237 243
         $values = $this->readValueToInject($variable, $environment);
@@ -260,6 +266,9 @@  discard block
 block discarded – undo
260 266
         return preg_replace('~(<%\s*karma:[^%]*%>\s*)~i', '', $fileContent);
261 267
     }
262 268
 
269
+    /**
270
+     * @return string
271
+     */
263 272
     private function injectValues($sourceFile, $content, $environment, $replacementCounter = 0)
264 273
     {
265 274
         $replacementCounter += $this->injectScalarValues($content, $environment);
Please login to merge, or discard this patch.