GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Assert::longitude()   A
last analyzed

Complexity

Conditions 4
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.2
c 0
b 0
f 0
cc 4
eloc 4
nc 2
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Geocoder package.
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @license    MIT License
11
 */
12
13
namespace Geocoder;
14
15
use Geocoder\Exception\InvalidArgument;
16
17
class Assert
0 ignored issues
show
Coding Style introduced by
Assert does not seem to conform to the naming convention (Utils?$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
18
{
19
    /**
20
     * @param float  $value
21
     * @param string $message
22
     */
23
    public static function latitude($value, string $message = '')
24
    {
25
        self::float($value, $message);
26
        if ($value < -90 || $value > 90) {
27
            throw new InvalidArgument(sprintf($message ?: 'Latitude should be between -90 and 90. Got: %s', $value));
28
        }
29
    }
30
31
    /**
32
     * @param float  $value
33
     * @param string $message
34
     */
35
    public static function longitude($value, string $message = '')
36
    {
37
        self::float($value, $message);
38
        if ($value < -180 || $value > 180) {
39
            throw new InvalidArgument(sprintf($message ?: 'Longitude should be between -180 and 180. Got: %s', $value));
40
        }
41
    }
42
43
    /**
44
     * @param mixed  $value
45
     * @param string $message
46
     */
47
    public static function notNull($value, string $message = '')
48
    {
49
        if (null === $value) {
50
            throw new InvalidArgument(sprintf($message ?: 'Value cannot be null'));
51
        }
52
    }
53
54
    private static function typeToString($value): string
55
    {
56
        return is_object($value) ? get_class($value) : gettype($value);
57
    }
58
59
    /**
60
     * @param $value
61
     * @param $message
62
     */
63
    private static function float($value, string $message)
64
    {
65
        if (!is_float($value)) {
66
            throw new InvalidArgument(
67
                sprintf($message ?: 'Expected a float. Got: %s', self::typeToString($value))
68
            );
69
        }
70
    }
71
}
72