ScriptLatf::code()   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\Script;
2
3
/**
4
 * Class ScriptLatf - Representation of the Latin (Fraktur variant) script.
5
 *
6
 * @author    Greg Roach <[email protected]>
7
 * @copyright (c) 2018 Greg Roach
8
 * @license   GPLv3+
9
 */
10
class ScriptLatf extends AbstractScript implements ScriptInterface
11
{
12
    public function code()
13
    {
14
        return 'Latf';
15
    }
16
17
    public function number()
18
    {
19
        return '217';
20
    }
21
}
22