TerritoryJo::firstDay()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Territory;
2
3
/**
4
 * Class AbstractTerritory - Representation of the territory JO - Jordan.
5
 *
6
 * @author    Greg Roach <[email protected]>
7
 * @copyright (c) 2018 Greg Roach
8
 * @license   GPLv3+
9
 */
10
class TerritoryJo extends AbstractTerritory implements TerritoryInterface
11
{
12
    public function code()
13
    {
14
        return 'JO';
15
    }
16
17
    public function firstDay()
18
    {
19
        return 6;
20
    }
21
22
    public function weekendStart()
23
    {
24
        return 5;
25
    }
26
27
    public function weekendEnd()
28
    {
29
        return 6;
30
    }
31
}
32