GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 6fcb7a...fcde01 )
by t
06:59 queued 04:42
created

MathAndTrigonometry::arabic()   A

Complexity

Conditions 5
Paths 9

Size

Total Lines 25
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 5

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 5
eloc 18
nc 9
nop 1
dl 0
loc 25
ccs 12
cts 12
cp 1
crap 5
rs 9.3554
c 1
b 0
f 0
1
<?php
2
/**
3
 * Trait MathAndTrigonometry
4
 *
5
 * @link https://www.icy2003.com/
6
 * @author icy2003 <[email protected]>
7
 * @copyright Copyright (c) 2017, icy2003
8
 */
9
10
namespace icy2003\php\icomponents\excel;
11
12
use icy2003\php\icomponents\excel\mathAndTrigonometry\AMAT;
13
use icy2003\php\icomponents\excel\mathAndTrigonometry\BMAT;
14
use icy2003\php\icomponents\excel\mathAndTrigonometry\CMAT;
15
use icy2003\php\icomponents\excel\mathAndTrigonometry\DMAT;
16
use icy2003\php\icomponents\excel\mathAndTrigonometry\EMAT;
17
use icy2003\php\icomponents\excel\mathAndTrigonometry\FMAT;
18
use icy2003\php\icomponents\excel\mathAndTrigonometry\GMAT;
19
use icy2003\php\icomponents\excel\mathAndTrigonometry\IMAT;
20
use icy2003\php\icomponents\excel\mathAndTrigonometry\LMAT;
21
use icy2003\php\icomponents\excel\mathAndTrigonometry\MMAT;
22
use icy2003\php\icomponents\excel\mathAndTrigonometry\OMAT;
23
use icy2003\php\icomponents\excel\mathAndTrigonometry\PMAT;
24
use icy2003\php\icomponents\excel\mathAndTrigonometry\QMAT;
25
use icy2003\php\icomponents\excel\mathAndTrigonometry\RMAT;
26
use icy2003\php\icomponents\excel\mathAndTrigonometry\SMAT;
27
use icy2003\php\icomponents\excel\mathAndTrigonometry\TMAT;
28
29
/**
30
 * 数学和三角
31
 */
32
trait MathAndTrigonometry
33
{
34
    use AMAT, BMAT, CMAT, DMAT, EMAT, FMAT, GMAT, IMAT, LMAT, MMAT, OMAT, PMAT, QMAT, RMAT, SMAT, TMAT;
35
}
36