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::gcd()   B

Complexity

Conditions 7
Paths 16

Size

Total Lines 20
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 56

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 7
eloc 13
nc 16
nop 1
dl 0
loc 20
ccs 0
cts 14
cp 0
crap 56
rs 8.8333
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