src/Core/Model/Subscription/ResourceCreatedDelivery.php 1 location
|
@@ 21-29 (lines=9) @@
|
18 |
|
* @method int getVersion() |
19 |
|
* @method ResourceCreatedDelivery setVersion(int $version = null) |
20 |
|
*/ |
21 |
|
class ResourceCreatedDelivery extends Delivery |
22 |
|
{ |
23 |
|
public function fieldDefinitions() |
24 |
|
{ |
25 |
|
$definition = parent::fieldDefinitions(); |
26 |
|
$definition['version'] = [static::TYPE => 'int']; |
27 |
|
return $definition; |
28 |
|
} |
29 |
|
} |
30 |
|
|
src/Core/Model/Subscription/ResourceDeletedDelivery.php 1 location
|
@@ 21-29 (lines=9) @@
|
18 |
|
* @method int getVersion() |
19 |
|
* @method ResourceDeletedDelivery setVersion(int $version = null) |
20 |
|
*/ |
21 |
|
class ResourceDeletedDelivery extends Delivery |
22 |
|
{ |
23 |
|
public function fieldDefinitions() |
24 |
|
{ |
25 |
|
$definition = parent::fieldDefinitions(); |
26 |
|
$definition['version'] = [static::TYPE => 'int']; |
27 |
|
return $definition; |
28 |
|
} |
29 |
|
} |
30 |
|
|