Completed
Pull Request — master (#38)
by James
02:13 queued 46s
created
src/SolutionProviders/BadMethodCallSolutionProvider.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
70 70
             })->first();
71 71
     }
72 72
 
73
+    /**
74
+     * @param string $class
75
+     */
73 76
     protected function getAvailableMethods($class): Collection
74 77
     {
75 78
         $class = new ReflectionClass($class);
Please login to merge, or discard this patch.
src/Views/Compilers/BladeSourceMapCompiler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         return 1;
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $value
41
+     */
39 42
     public function compileString($value)
40 43
     {
41 44
         $value = $this->addEchoLineNumbers($value);
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
@@ -10,6 +10,10 @@
 block discarded – undo
10 10
     private $variableName;
11 11
     private $viewFile;
12 12
 
13
+    /**
14
+     * @param string $variableName
15
+     * @param string $viewFile
16
+     */
13 17
     public function __construct($variableName = null, $viewFile = null)
14 18
     {
15 19
         $this->variableName = $variableName;
Please login to merge, or discard this patch.
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.