Skip to content

Commit 02423b9

Browse files
committed
Inherited document @inheritdoc
1 parent 6d2dfb4 commit 02423b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+76
-277
lines changed

lib/AbandonedCheckout.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
class AbandonedCheckout extends ShopifyAPI
1414
{
1515
/**
16-
* Key of the API Resource which is used to fetch data from request responses
17-
*
18-
* @var string
16+
* @inheritDoc
1917
*/
2018
protected $resourceKey = 'checkout';
2119
}

lib/ApplicationCharge.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
class ApplicationCharge extends ShopifyAPI
1414
{
1515
/**
16-
* Key of the API Resource which is used to fetch data from request responses
17-
*
18-
* @var string
16+
* @inheritDoc
1917
*/
2018
protected $resourceKey = 'application_charge';
2119
}

lib/Article.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,12 @@
2222
class Article extends ShopifyAPI
2323
{
2424
/**
25-
* Key of the API Resource which is used to fetch data from request responses
26-
*
27-
* @var string
25+
* @inheritDoc
2826
*/
2927
protected $resourceKey = 'article';
3028

3129
/**
32-
* List of child Resource names / classes
33-
* If any array item has an associative key => value pair, value will be considered as the resource name
34-
* (by which it will be called) and key will be the associated class name.
35-
*
36-
* @var array
30+
* @inheritDoc
3731
*/
3832
protected $childResource = array(
3933
'Event',

lib/Asset.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
class Asset extends ShopifyAPI
1414
{
1515
/**
16-
* Key of the API Resource which is used to fetch data from request responses
17-
*
18-
* @var string
16+
* @inheritDoc
1917
*/
2018
protected $resourceKey = 'asset';
2119
}

lib/Blog.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,12 @@
2323
class Blog extends ShopifyAPI
2424
{
2525
/**
26-
* Key of the API Resource which is used to fetch data from request responses
27-
*
28-
* @var string
26+
* @inheritDoc
2927
*/
3028
public $resourceKey = 'blog';
3129

3230
/**
33-
* List of child Resource names / classes
34-
* If any array item has an associative key => value pair, value will be considered as the resource name
35-
* (by which it will be called) and key will be the associated class name.
36-
*
37-
* @var array
31+
* @inheritDoc
3832
*/
3933
protected $childResource = array(
4034
'Article',

lib/CarrierService.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
class CarrierService extends ShopifyAPI
1414
{
1515
/**
16-
* Key of the API Resource which is used to fetch data from request responses
17-
*
18-
* @var string
16+
* @inheritDoc
1917
*/
2018
protected $resourceKey = 'carrier_service';
2119
}

lib/Collect.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
class Collect extends ShopifyAPI
1414
{
1515
/**
16-
* Key of the API Resource which is used to fetch data from request responses
17-
*
18-
* @var string
16+
* @inheritDoc
1917
*/
2018
protected $resourceKey = 'collect';
2119
}

lib/Comment.php

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,19 @@
3232
class Comment extends ShopifyAPI
3333
{
3434
/**
35-
* Key of the API Resource which is used to fetch data from request responses
36-
*
37-
* @var string
35+
* @inheritDoc
3836
*/
3937
protected $resourceKey = 'comment';
4038

4139
/**
42-
* List of child Resource names / classes
43-
* If any array item has an associative key => value pair, value will be considered as the resource name
44-
* (by which it will be called) and key will be the associated class name.
45-
*
46-
* @var array
40+
* @inheritDoc
4741
*/
4842
protected $childResource = array (
4943
'Event',
5044
);
5145

5246
/**
53-
* List of custom POST actions
54-
* @example: ['enable', 'disable', 'remove','default' => 'makeDefault']
55-
* Methods can be called like enable(), disable(), remove(), makeDefault() etc.
56-
* If any array item has an associative key => value pair, value will be considered as the method name and key will be the associated path to be used with the action.
57-
*
58-
* @var array
47+
* @inheritDoc
5948
*/
6049
protected $customPostActions = array(
6150
'spam',

lib/Country.php

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,19 @@
2222
class Country extends ShopifyAPI
2323
{
2424
/**
25-
* Key of the API Resource which is used to fetch data from request responses
26-
*
27-
* @var string
25+
* @inheritDoc
2826
*/
2927
protected $resourceKey = 'country';
3028

3129
/**
32-
* List of child Resource names / classes
33-
* If any array item has an associative key => value pair, value will be considered as the resource name
34-
* (by which it will be called) and key will be the associated class name.
35-
*
36-
* @var array
30+
* @inheritDoc
3731
*/
3832
protected $childResource = array(
3933
'Province',
4034
);
4135

4236
/**
43-
* Get the pluralized version of the resource key
44-
*
45-
* @return string
37+
* @inheritDoc
4638
*/
4739
protected function pluralizeKey()
4840
{

lib/CustomCollection.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,12 @@
2222
class CustomCollection extends ShopifyAPI
2323
{
2424
/**
25-
* Key of the API Resource which is used to fetch data from request responses
26-
*
27-
* @var string
25+
* @inheritDoc
2826
*/
2927
protected $resourceKey = 'custom_collection';
3028

3129
/**
32-
* List of child Resource names / classes
33-
* If any array item has an associative key => value pair, value will be considered as the resource name
34-
* (by which it will be called) and key will be the associated class name.
35-
*
36-
* @var array
30+
* @inheritDoc
3731
*/
3832
protected $childResource = array(
3933
'Event',

0 commit comments

Comments
 (0)