blob: 5a230e2e6df817ea8cab4867bc6aa1fa7577cfa0 (
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
|
<?php namespace Fisharebest\Localization\Territory;
/**
* Class AbstractTerritory - Representation of a geographic area.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
abstract class AbstractTerritory {
/** {@inheritdoc} */
public function firstDay() {
return 1;
}
/** {@inheritdoc} */
public function measurementSystem() {
return 'metric';
}
/** {@inheritdoc} */
public function paperSize() {
return 'A4';
}
/** {@inheritdoc} */
public function weekendStart() {
return 6;
}
/** {@inheritdoc} */
public function weekendEnd() {
return 0;
}
}
|