Completed
Push — develop ( afbc65...197c51 )
by Greg
16:26
created

ScriptJamo   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A code() 0 3 1
A number() 0 3 1
1
<?php namespace Fisharebest\Localization\Script;
2
3
/**
4
 * Class ScriptJamo - Representation of the Jamo script.
5
 *
6
 * @author    Greg Roach <[email protected]>
7
 * @copyright (c) 2015 Greg Roach
8
 * @license   GPLv3+
9
 */
10
class ScriptJamo extends AbstractScript implements ScriptInterface {
11
	public function code() {
12
		return 'Jamo';
13
	}
14
15
	public function number() {
16
		return '284';
17
	}
18
}
19