Completed
Push — master ( 92461c...7eeb67 )
by WEBEWEB
01:33
created

DateTimeZoneHelper::equals()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
/**
4
 * This file is part of the core-library package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Core\Helper\Argument;
13
14
use DateTimeZone;
15
16
/**
17
 * Date/time zone helper.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Library\Core\Helper\Argument
21
 */
22
class DateTimeZoneHelper {
23
24
    /**
25
     * Determines if two date/time zone are equals.
26
     *
27
     * @param DateTimeZone $a The date/time zone A.
28
     * @param DateTimeZone $b The date/time zone B.
29
     * @return boolean Returns true in case o success, false otherwise.
30
     */
31
    public static function equals(DateTimeZone $a, DateTimeZone $b) {
32
        return $a->getName() === $b->getName();
33
    }
34
35
}
36