Completed
Push — master ( 7c7fe3...6a7799 )
by Gilmar
03:09
created

Item::getSchema()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of gpupo component
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\CommonSdk\Entity\EntityAbstract;
13
use Gpupo\CommonSdk\Entity\EntityInterface;
14
15
class Item extends EntityAbstract implements EntityInterface
16
{
17
    public function getSchema()
18
    {
19
        return  [
20
            'name'  => 'string',
21
            'value' => 'string',
22
        ];
23
    }
24
}
25