Completed
Pull Request — master (#38)
by James
02:09 queued 43s
created
src/Solutions/SuggestCorrectVariableNameSolution.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -13,6 +13,10 @@
 block discarded – undo
13 13
     /** @var string */
14 14
     private $viewFile;
15 15
 
16
+    /**
17
+     * @param string $variableName
18
+     * @param string $viewFile
19
+     */
16 20
     public function __construct($variableName = null, $viewFile = null, $suggested = null)
17 21
     {
18 22
         $this->variableName = $variableName;
Please login to merge, or discard this patch.
src/Solutions/MakeViewVariableOptionalSolution.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -13,6 +13,10 @@
 block discarded – undo
13 13
     /** @var string */
14 14
     private $viewFile;
15 15
 
16
+    /**
17
+     * @param string $variableName
18
+     * @param string $viewFile
19
+     */
16 20
     public function __construct($variableName = null, $viewFile = null)
17 21
     {
18 22
         $this->variableName = $variableName;
Please login to merge, or discard this patch.