Completed
Push — master ( 5971d3...dcc755 )
by
unknown
26s queued 11s
created

AddressingAccountValidator::validateBranch()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 4
nc 2
nop 0
1
<?php
2
3
namespace WeDevBr\Bankly\Validators\Pix;
4
5
use WeDevBr\Bankly\Types\Pix\AddressingAccount;
6
7
/**
8
 * AddressingAccountValidator class
9
 *
10
 * PHP version 7.3|7.4|8.0
11
 *
12
 * @author    WeDev Brasil Team <[email protected]>
13
 * @author    Rafael Teixeira <[email protected]>
14
 * @copyright 2020 We Dev Tecnologia Ltda
15
 * @link      https://github.com/wedevBr/bankly-laravel/
16
 */
17
class AddressingAccountValidator
18
{
19
    /** @var AddressingAccount */
20
    private $addressingAccount;
21
22
    /**
23
     * @param AddressingAccount $addressingAccount
24
     */
25
    public function __construct(AddressingAccount $addressingAccount)
26
    {
27
        $this->addressingAccount = $addressingAccount;
28
    }
29
30
    /**
31
     * Validate the attributes of the Addressing Account class
32
     *
33
     * @return void
34
     */
35
    public function validate(): void
36
    {
37
        $this->validateBranch();
38
        $this->validateNumber();
39
        $this->validateType();
40
    }
41
42
    /**
43
     * This validates a branch account
44
     *
45
     * @return void
46
     * @throws InvalidArgumentException
47
     */
48
    private function validateBranch()
49
    {
50
        $branch = $this->addressingAccount->branch;
51
        if (empty($branch) || !is_string($branch) || !is_numeric($branch)) {
52
            throw new \InvalidArgumentException('branch should be a numeric string');
53
        }
54
    }
55
56
    /**
57
     * This validates a number account
58
     *
59
     * @return void
60
     * @throws InvalidArgumentException
61
     */
62
    private function validateNumber()
63
    {
64
        $number = $this->addressingAccount->number;
65
        if (empty($number) || !is_string($number) || !is_numeric($number)) {
66
            throw new \InvalidArgumentException('number account should be a numeric string');
67
        }
68
    }
69
70
    /**
71
     * This validates a type account
72
     *
73
     * @return void
74
     * @throws InvalidArgumentException
75
     */
76 View Code Duplication
    private function validateType()
0 ignored issues
show
Duplication introduced by
This method 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...
77
    {
78
        $type = $this->addressingAccount->type;
79
        if (empty($type) || !is_string($type)) {
80
            throw new \InvalidArgumentException('type account should be a string');
81
        }
82
83
        $typeList = [
84
            'CHECKING',
85
            'SAVINGS',
86
            'SALARY',
87
        ];
88
        if (!in_array($this->addressingAccount->type, $typeList)) {
89
            throw new \InvalidArgumentException('this account type is not valid');
90
        }
91
    }
92
}
93