1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @author @jayS-de <[email protected]> |
4
|
|
|
* @created: 27.01.15, 18:22 |
5
|
|
|
*/ |
6
|
|
|
|
7
|
|
|
namespace Commercetools\Core\Model\Subscription; |
8
|
|
|
|
9
|
|
|
use Commercetools\Core\Model\Common\Context; |
10
|
|
|
use Commercetools\Core\Model\Common\Reference; |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* @package Commercetools\Core\Model\Subscription |
14
|
|
|
* @link https://dev.commercetools.com/http-api-types.html#reference-types |
15
|
|
|
* @link https://dev.commercetools.com/http-api-projects-subscriptions.html#subscription |
16
|
|
|
* @method string getTypeId() |
17
|
|
|
* @method SubscriptionReference setTypeId(string $typeId = null) |
18
|
|
|
* @method string getId() |
19
|
|
|
* @method SubscriptionReference setId(string $id = null) |
20
|
|
|
* @method string getKey() |
21
|
|
|
* @method SubscriptionReference setKey(string $key = null) |
22
|
|
|
* @method Subscription getObj() |
23
|
|
|
* @method SubscriptionReference setObj(Subscription $obj = null) |
24
|
|
|
*/ |
25
|
|
View Code Duplication |
class SubscriptionReference extends Reference |
|
|
|
|
26
|
|
|
{ |
27
|
|
|
const TYPE_SUBSCRIPTION = 'subscription'; |
28
|
|
|
const TYPE_CLASS = '\Commercetools\Core\Model\Subscription\Subscription'; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @param $id |
32
|
|
|
* @param Context|callable $context |
33
|
|
|
* @return SubscriptionReference |
34
|
|
|
*/ |
35
|
|
|
public static function ofId($id, $context = null) |
36
|
|
|
{ |
37
|
|
|
return static::ofTypeAndId(static::TYPE_SUBSCRIPTION, $id, $context); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @param $key |
42
|
|
|
* @param Context|callable $context |
43
|
|
|
* @return SubscriptionReference |
44
|
|
|
*/ |
45
|
|
|
public static function ofKey($key, $context = null) |
46
|
|
|
{ |
47
|
|
|
return static::ofTypeAndKey(static::TYPE_SUBSCRIPTION, $key, $context); |
48
|
|
|
} |
49
|
|
|
} |
50
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.