Completed
Push — develop ( 41f875...96d9c2 )
by Greg
11:23 queued 01:06
created

LocaleCuGlag   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 3
c 2
b 0
f 0
lcom 0
cbo 2
dl 0
loc 13
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A endonym() 0 3 1
A endonymSortable() 0 3 1
A script() 0 3 1
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Script\ScriptGlag;
4
5
/**
6
 * Class LocaleCuGlag - Old Church Slavonic
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2015 Greg Roach
10
 * @license       GPLv3+
11
 */
12
13
class LocaleCuGlag extends LocaleCu {
14
	public function endonym() {
15
		return 'ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ';
16
	}
17
18
	public function endonymSortable() {
19
		return 'ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ';
20
	}
21
22
	public function script() {
23
		return new ScriptGlag;
24
	}
25
}
26