Completed
Push — master ( 13bbff...a53018 )
by Gilmar
21:55
created

SkuCollection::getKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of gpupo/netshoes-sdk
5
 * Created by Gilmar Pupo <[email protected]>
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 * For more information, see <http://www.g1mr.com/>.
9
 */
10
namespace Gpupo\NetshoesSdk\Entity\Product\Sku;
11
12
use Gpupo\NetshoesSdk\Entity\AbstractMetadata;
13
14
class SkuCollection extends AbstractMetadata
15
{
16
    protected function getKey()
17
    {
18
        return 'items';
19
    }
20
21
    protected function factoryEntity(array $data)
22
    {
23
        return new Item($data);
24
    }
25
}
26