Completed
Push — master ( 099689...2b7b55 )
by ARCANEDEV
10s
created

src/Entities/Continents.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php namespace Arcanedev\GeoIP\Entities;
2
3
use Arcanedev\Support\Collection;
4
5
/**
6
 * Class     Continents
7
 *
8
 * @package  Arcanedev\GeoIP\Entities
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class Continents extends Collection
0 ignored issues
show
Deprecated Code introduced by
The class Arcanedev\Support\Collection has been deprecated with message: Use the basic laravel collection

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
12
{
13
    /* -----------------------------------------------------------------
14
     |  Constructor
15
     | -----------------------------------------------------------------
16
     */
17
18
    /**
19
     * Make the continents collection.
20
     *
21
     * @return self
22
     */
23 42
    public static function load()
24
    {
25 42
        return static::make(
26 42
            config('geoip.continents')
27
        );
28
    }
29
}
30