Completed
Push — master ( d75880...1d95d9 )
by Gilmar
36:53 queued 11:51
created

Image   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 9
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSchema() 0 6 1
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\CommonSdk\Entity\EntityAbstract;
13
use Gpupo\CommonSdk\Entity\EntityInterface;
14
15
/**
16
 *
17
 * @method string getUrl()    Acesso a url
18
 * @method setUrl(string $url)    Define url
19
 *
20
 */
21
class Image extends EntityAbstract implements EntityInterface
22
{
23
    public function getSchema()
24
    {
25
        return  [
26
            'url'      => 'string',
27
        ];
28
    }
29
}
30