@@ -10,6 +10,9 @@ |
||
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; |
@@ -9,6 +9,9 @@ |
||
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; |
@@ -2,12 +2,12 @@ |
||
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; |