Amount   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 32
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getNumber() 0 4 1
A Yuan() 0 4 1
1
<?php
2
/*
3
 * This file is part of the slince/youzan-pay package.
4
 *
5
 * (c) Slince <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Slince\YouzanPay;
12
13
class Amount
14
{
15
    /**
16
     * @var int
17
     */
18
    protected $number;
19
20
    public function __construct($number)
21
    {
22
        $this->number = $number;
23
    }
24
25
    /**
26
     * 获取交易价格(分).
27
     *
28
     * @return int
29
     */
30
    public function getNumber()
31
    {
32
        return $this->number;
33
    }
34
35
    /**
36
     * @param float $price
37
     *
38
     * @return static
39
     */
40
    public static function Yuan($price)
41
    {
42
        return new static($price * 100);
43
    }
44
}