ParserBarcodeItem::getProperties()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 28
Code Lines 26

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 25
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 26
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 28
ccs 25
cts 25
cp 1
crap 1
rs 9.504
1
<?php
2
/**
3
 * This file is part of graze/unicontroller-client.
4
 *
5
 * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @license https://github.com/graze/unicontroller-client/blob/master/LICENSE.md
11
 * @link https://github.com/graze/unicontroller-client
12
 */
13
namespace Graze\UnicontrollerClient\Parser\Parser;
14
15
use Graze\UnicontrollerClient\Parser\Parser\AbstractParser;
16
use Graze\UnicontrollerClient\Parser\Parser\ParserInterface;
17
use Graze\UnicontrollerClient\Entity\Entity\EntityBarcodeItem;
18
19
class ParserBarcodeItem extends AbstractParser implements ParserInterface
20
{
21
    /**
22
     * @return []
0 ignored issues
show
Documentation Bug introduced by
The doc comment [] at position 0 could not be parsed: Unknown type name '[' at position 0 in [].
Loading history...
23
     */
24 2
    protected function getProperties()
25
    {
26
        return [
27 2
            'anchorPoint',
28 2
            'xPos',
29 2
            'yPos',
30 2
            'height',
31 2
            'orion',
32 2
            'description',
33 2
            'narrow',
34 2
            'inverted',
35 2
            'barcodeType',
36 2
            'data',
37 2
            'humanReadable',
38 2
            'ratio',
39 2
            'frame',
40 2
            'showDropDowns',
41 2
            'fontName',
42 2
            'pointSize',
43 2
            'bold',
44 2
            'italic',
45 2
            'subType',
46 2
            'preferredFormat',
47 2
            'processTilde',
48 2
            'separatorHeight',
49 2
            'segmentWidth',
50 2
            'useHibc',
51
            'phantomField'
52 2
        ];
53
    }
54
55
    /**
56
     * @return EntityBarcodeItem
57
     */
58 2
    protected function getEntity()
59
    {
60 2
        return new EntityBarcodeItem();
0 ignored issues
show
Bug Best Practice introduced by
The expression return new Graze\Unicont...ity\EntityBarcodeItem() returns the type Graze\UnicontrollerClien...ntity\EntityBarcodeItem which is incompatible with the return type mandated by Graze\UnicontrollerClien...ractParser::getEntity() of Graze\UnicontrollerClien...\Entity\EntityInterface.

In the issue above, the returned value is violating the contract defined by the mentioned interface.

Let's take a look at an example:

interface HasName {
    /** @return string */
    public function getName();
}

class Name {
    public $name;
}

class User implements HasName {
    /** @return string|Name */
    public function getName() {
        return new Name('foo'); // This is a violation of the ``HasName`` interface
                                // which only allows a string value to be returned.
    }
}
Loading history...
61
    }
62
}
63