Completed
Push — master ( 03a3fc...10d0d9 )
by Gilmar
42:34 queued 17:38
created

PriceSchedule::toArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 9
rs 9.6666
ccs 4
cts 4
cp 1
cc 1
eloc 5
nc 1
nop 0
crap 1
1
<?php
2
3
/*
4
 * This file is part of gpupo/netshoes-sdk
5
 * Created by Gilmar Pupo <[email protected]>
6
 * For the information of copyright and license you should read the file
7
 * LICENSE which is distributed with this source code.
8
 * Para a informação dos direitos autorais e de licença você deve ler o arquivo
9
 * LICENSE que é distribuído com este código-fonte.
10
 * Para obtener la información de los derechos de autor y la licencia debe leer
11
 * el archivo LICENSE que se distribuye con el código fuente.
12
 * For more information, see <http://www.g1mr.com/>.
13
 */
14
15
namespace Gpupo\NetshoesSdk\Entity\Product\Sku;
16
17
use Gpupo\CommonSdk\Entity\EntityAbstract;
18
use Gpupo\CommonSdk\Entity\EntityInterface;
19
20
/**
21
 * @method float getPriceFrom()    Acesso a priceFrom
22
 * @method setPriceFrom(float $priceFrom)    Define priceFrom
23
 * @method float getPriceTo()    Acesso a priceTo
24
 * @method setPriceTo(float $priceTo)    Define priceTo
25
 * @method string getDateInit()    Acesso a dateInit
26
 * @method setDateInit(string $dateInit)    Define dateInit
27
 * @method string getDateEnd()    Acesso a dateEnd
28
 * @method setDateEnd(string $dateEnd)    Define dateEnd
29
 */
30
class PriceSchedule extends EntityAbstract implements EntityInterface
31
{
32
    /**
33
     * @codeCoverageIgnore
34
     */
35
    public function getSchema()
36
    {
37
        return  [
38
            'priceFrom' => 'number',
39
            'priceTo'   => 'number',
40
            'dateInit'  => 'string',
41
            'dateEnd'   => 'string',
42
        ];
43
    }
44
45 6
    protected function setUp()
46
    {
47 6
        $this->setOptionalSchema(['priceFrom', 'dateInit', 'dateEnd']);
48 6
    }
49
50
    /**
51
     * @todo Apesar do preço promocional comportar agendamento, as datas de início e fim de uma promoção estão fixas
52
     */
53 4
    public function toArray()
54
    {
55 4
        $array = array_merge(parent::toArray(), [
56 4
            'dateInit'  => "2016-01-01T00:00:01.000Z",
57
            'dateEnd'  => "2018-01-01T00:00:01.000Z",
58
        ]);
59
60 4
        return $array;
61
    }
62
}
63