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

ScriptHanb::number()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Script;
2
3
/**
4
 * Class ScriptHanb - Representation of the Hangul+Bopomofo script.
5
 *
6
 * @author    Greg Roach <[email protected]>
7
 * @copyright (c) 2015 Greg Roach
8
 * @license   GPLv3+
9
 */
10
class ScriptHanb extends AbstractScript implements ScriptInterface {
11
	public function code() {
12
		return 'Hanb';
13
	}
14
15
	public function number() {
16
		return '503';
17
	}
18
}
19