summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/willdurand/geocoder/Assert.php
blob: 489c8b929a60bfca2141575cf27720baae2214f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php

declare(strict_types=1);

/*
 * This file is part of the Geocoder package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @license    MIT License
 */

namespace Geocoder;

use Geocoder\Exception\InvalidArgument;

class Assert
{
    /**
     * @param float  $value
     * @param string $message
     */
    public static function latitude($value, string $message = '')
    {
        self::float($value, $message);
        if ($value < -90 || $value > 90) {
            throw new InvalidArgument(sprintf($message ?: 'Latitude should be between -90 and 90. Got: %s', $value));
        }
    }

    /**
     * @param float  $value
     * @param string $message
     */
    public static function longitude($value, string $message = '')
    {
        self::float($value, $message);
        if ($value < -180 || $value > 180) {
            throw new InvalidArgument(sprintf($message ?: 'Longitude should be between -180 and 180. Got: %s', $value));
        }
    }

    /**
     * @param mixed  $value
     * @param string $message
     */
    public static function notNull($value, string $message = '')
    {
        if (null === $value) {
            throw new InvalidArgument(sprintf($message ?: 'Value cannot be null'));
        }
    }

    private static function typeToString($value): string
    {
        return is_object($value) ? get_class($value) : gettype($value);
    }

    /**
     * @param $value
     * @param $message
     */
    private static function float($value, string $message)
    {
        if (!is_float($value)) {
            throw new InvalidArgument(
                sprintf($message ?: 'Expected a float. Got: %s', self::typeToString($value))
            );
        }
    }
}