Issues (4)

config/di/location.php (1 issue)

1
<?php
2
/**
3
 * Configuration file for DI container.
4
 */
5
return [
6
7
    // Services to add to the container.
8
    "services" => [
9
        "location" => [
10
            "shared" => true,
11
            "callback" => function () {
12
                $curl = $this->get("curl");
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $this seems to be never defined.
Loading history...
13
                $cfg = $this->get("configuration");
14
15
                $location = new \Anax\LocationProvider\Ipstack($curl, $cfg);
16
17
                return $location;
18
            }
19
        ],
20
    ],
21
];
22