Passed
Push — develop ( 375edc...65434e )
by Edwin
02:48
created

ProductImage

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 22
c 0
b 0
f 0
1
<?php
2
3
namespace ShopifyClient\Resource;
4
5
/**
6
 * https://help.shopify.com/api/reference/product_image
7
 */
8
class ProductImage extends AbstractNestedCountableCrudResource
9
{
10
    /**
11
     * @var string
12
     */
13
    protected $resourceParentEndpointPleural = 'products';
14
15
    /**
16
     * @var string
17
     */
18
    protected $resourceChildEndpointPleural = 'images';
19
20
    /**
21
     * @var string
22
     */
23
    protected $resourceChildKeySingular = 'image';
24
25
    /**
26
     * @var string
27
     */
28
    protected $resourceChildKeyPleural = 'images';
29
}
30