Completed
Pull Request — master (#83)
by James
01:43
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/FixMissingSemicolonSolution.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -11,6 +11,11 @@
 block discarded – undo
11 11
     private $lineNumber;
12 12
     private $unexpected;
13 13
 
14
+    /**
15
+     * @param string $filePath
16
+     * @param integer $lineNumber
17
+     * @param string $unexpected
18
+     */
14 19
     public function __construct($filePath = null, $lineNumber = null, $unexpected = null)
15 20
     {
16 21
         $this->filePath = $filePath;
Please login to merge, or discard this patch.