Completed
Pull Request — master (#94)
by James
01:25
created
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.
src/SolutionProviders/MissingSemicolonSolutionProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Facade\Ignition\SolutionProviders;
4 4
 
5
-use Facade\Ignition\Solutions\FixMissingSemicolonSolution;
6 5
 use Facade\IgnitionContracts\HasSolutionsForThrowable;
6
+use Facade\Ignition\Solutions\FixMissingSemicolonSolution;
7 7
 use ParseError;
8 8
 use Symfony\Component\Debug\Exception\FatalThrowableError;
9 9
 use Throwable;
Please login to merge, or discard this patch.