Conditions | 6 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
45 | 1 | public function isActive() |
|
46 | { |
||
47 | 1 | if (strlen($this->getTerminal()) > 5 |
|
48 | 1 | && strlen($this->getKey()) > 5 |
|
49 | 1 | && strlen($this->getMerchantName()) > 5 |
|
50 | 1 | && strlen($this->getMerchantEmail()) > 5 |
|
51 | 1 | && strlen($this->getMerchantUrl()) > 5 |
|
52 | ) { |
||
53 | 1 | return true; |
|
54 | } |
||
55 | |||
56 | 1 | return false; |
|
57 | } |
||
59 |