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
Pull Request — master (#18)
by t
04:52 queued 01:14
created

MathAndTrigonometry::roman()   B

Complexity

Conditions 8
Paths 10

Size

Total Lines 30
Code Lines 20

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 72

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 8
eloc 20
nc 10
nop 1
dl 0
loc 30
ccs 0
cts 14
cp 0
crap 72
rs 8.4444
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