VatOnPayStatusEnum::isDisabled()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Fousky\Component\iDoklad\LOV;
4
5
/**
6
 * @see https://app.idoklad.cz/developer/Help/v2/cs/ResourceModel?modelName=VatOnPayStatusEnum
7
 *
8
 * @author Lukáš Brzák <[email protected]>
9
 */
10 View Code Duplication
class VatOnPayStatusEnum extends iDokladAbstractEnum
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...
11
{
12
    const DISABLED = 0;
13
14
    const ENABLED = 1;
15
16
    const INVOICE_NEEDS_TAXING = 2;
17
18
    /**
19
     * @return bool
20
     */
21
    public function isDisabled(): bool
22
    {
23
        return self::DISABLED === $this->getValue();
24
    }
25
26
    /**
27
     * @return bool
28
     */
29
    public function isEnabled(): bool
30
    {
31
        return self::ENABLED === $this->getValue();
32
    }
33
34
    /**
35
     * @return bool
36
     */
37
    public function isInvoiceNeedsTaxing(): bool
38
    {
39
        return self::INVOICE_NEEDS_TAXING === $this->getValue();
40
    }
41
}
42