Issues (118)

src/Routes/routes.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Created by Someshwer<[email protected]>.
4
 * User: Someshwer
5
 * Date: 07/08/2018
6
 * Time: 01:39 AM.
7
 */
8
Route::get('getWorldCountriesPackageInfo', function () {
0 ignored issues
show
The type Route 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. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
9
    return [
10
        'package_name' => 'Laravel - My World',
11
        'description'  => 'Laravel WorldCountries is a bundle for Laravel, providing useful world information that is all country names, timezones, ISO country codes, STD codes of countries  etc.
12
            This package only provides countries data that is all country names for all most 195 countries over the world along with continent names, ocean names, union territories names, world wonders names, ISO codes and ISO information, timezones and timezones information, and currencies and currency codes and symbols information.
13
            Also provides country wise states and state wise cities information.',
14
        'latest_release' => '3.4.9',
15
        'stable_version' => '3.4.9',
16
        'author'         => 'Someshwer Bandapally',
17
    ];
18
});
19