Completed
Pull Request — master (#42)
by James
14:20
created
src/Solutions/CreateViewFileSolution.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
 {
11 11
     private $viewName;
12 12
 
13
+    /**
14
+     * @param string $viewName
15
+     */
13 16
     public function __construct($viewName = null)
14 17
     {
15 18
         $this->viewName = $viewName;
Please login to merge, or discard this patch.
src/Solutions/UpdateViewNameSolution.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
     private $missingView;
10 10
     private $suggestedView;
11 11
 
12
+    /**
13
+     * @param string $missingView
14
+     */
12 15
     public function __construct($missingView = null, $suggestedView = null, $controllerPath = null)
13 16
     {
14 17
         $this->missingView = $missingView;
Please login to merge, or discard this patch.
src/SolutionProviders/ViewNotFoundSolutionProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Facade\Ignition\SolutionProviders;
4 4
 
5
+use Facade\IgnitionContracts\BaseSolution;
6
+use Facade\IgnitionContracts\HasSolutionsForThrowable;
5 7
 use Facade\Ignition\Exceptions\ViewException;
6 8
 use Facade\Ignition\Solutions\CreateViewFileSolution;
7 9
 use Facade\Ignition\Solutions\UpdateViewNameSolution;
8 10
 use Facade\Ignition\Support\StringComparator;
9
-use Facade\IgnitionContracts\BaseSolution;
10
-use Facade\IgnitionContracts\HasSolutionsForThrowable;
11 11
 use Illuminate\Support\Arr;
12 12
 use Illuminate\Support\Facades\View;
13 13
 use InvalidArgumentException;
Please login to merge, or discard this patch.