Issues (15)

src/config/paravel.php (2 issues)

Labels
Severity
1
<?php
2
return [
3
    'artisan_path' => env('PARAVEL_ARTISAN_PATH', base_path("artisan")),
0 ignored issues
show
The function base_path was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

3
    'artisan_path' => env('PARAVEL_ARTISAN_PATH', /** @scrutinizer ignore-call */ base_path("artisan")),
Loading history...
The function env was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

3
    'artisan_path' => /** @scrutinizer ignore-call */ env('PARAVEL_ARTISAN_PATH', base_path("artisan")),
Loading history...
4
];
5