Test Failed
Push — develop ( 6afb61...c5e053 )
by Jens
19:33 queued 11:02
created

fieldDefinitions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 8
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 8
loc 8
rs 9.4285
cc 1
eloc 5
nc 1
nop 0
1
<?php
2
/**
3
 * @author @jayS-de <[email protected]>
4
 */
5
6
namespace Commercetools\Core\Model\Message;
7
8
use Commercetools\Core\Model\Common\DateTimeDecorator;
9
use Commercetools\Core\Model\Common\Reference;
10
use Commercetools\Core\Model\Payment\Transaction;
11
use DateTime;
12
13
/**
14
 * @package Commercetools\Core\Model\Message
15
 * @link https://dev.commercetools.com/http-api-projects-messages.html#paymentstatusinterfacecodeset-message
16
 * @method string getId()
17
 * @method PaymentStatusInterfaceCodeSetMessage setId(string $id = null)
18
 * @method int getVersion()
19
 * @method PaymentStatusInterfaceCodeSetMessage setVersion(int $version = null)
20
 * @method DateTimeDecorator getCreatedAt()
21
 * @method PaymentStatusInterfaceCodeSetMessage setCreatedAt(DateTime $createdAt = null)
22
 * @method DateTimeDecorator getLastModifiedAt()
23
 * @method PaymentStatusInterfaceCodeSetMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
24
 * @method int getSequenceNumber()
25
 * @method PaymentStatusInterfaceCodeSetMessage setSequenceNumber(int $sequenceNumber = null)
26
 * @method Reference getResource()
27
 * @method PaymentStatusInterfaceCodeSetMessage setResource(Reference $resource = null)
28
 * @method int getResourceVersion()
29
 * @method PaymentStatusInterfaceCodeSetMessage setResourceVersion(int $resourceVersion = null)
30
 * @method string getType()
31
 * @method PaymentStatusInterfaceCodeSetMessage setType(string $type = null)
32
 * @method string getPaymentId()
33
 * @method PaymentStatusInterfaceCodeSetMessage setPaymentId(string $paymentId = null)
34
 * @method string getInterfaceCode()
35
 * @method PaymentStatusInterfaceCodeSetMessage setInterfaceCode(string $interfaceCode = null)
36
 */
37 View Code Duplication
class PaymentStatusInterfaceCodeSetMessage extends Message
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

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.

Loading history...
38
{
39
    const MESSAGE_TYPE = 'PaymentStatusInterfaceCodeSet';
40
41
    public function fieldDefinitions()
42
    {
43
        $definitions = parent::fieldDefinitions();
44
        $definitions['paymentId'] = [static::TYPE => 'string'];
45
        $definitions['interfaceCode'] = [static::TYPE => 'string'];
46
47
        return $definitions;
48
    }
49
}
50