Amount::getNumber()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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
}