ilyaskazi /
laravel-instamojo
| 1 | <?php |
||
| 2 | |||
| 3 | namespace IlyasKazi\Instamojo\Controllers; |
||
| 4 | |||
| 5 | use Illuminate\Http\Request; |
||
|
0 ignored issues
–
show
|
|||
| 6 | use App\Http\Requests; |
||
|
0 ignored issues
–
show
The type
App\Http\Requests was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 7 | use App\Http\Controllers\Controller; |
||
|
0 ignored issues
–
show
The type
App\Http\Controllers\Controller was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 8 | |||
| 9 | use App\User; |
||
|
0 ignored issues
–
show
The type
App\User was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 10 | use IlyasKazi\Instamojo\Models\InstamojoPayment; |
||
| 11 | use IlyasKazi\Instamojo\Models\InstamojoRefund; |
||
| 12 | |||
| 13 | class InstamojoController extends Controller |
||
| 14 | { |
||
| 15 | public function index() |
||
| 16 | { |
||
| 17 | echo "InstaMojo Installed!!!"; |
||
| 18 | exit; |
||
|
0 ignored issues
–
show
|
|||
| 19 | } |
||
| 20 | } |
||
| 21 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths