Passed
Push — master ( 040206...2f47c5 )
by
unknown
05:42 queued 02:29
created

RatepayDeviceFingerprint::isRatepayMethodActive()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
eloc 5
nc 2
nop 0
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2020 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Block;
28
29
use Magento\Framework\View\Element\Template;
0 ignored issues
show
Bug introduced by
The type Magento\Framework\View\Element\Template was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
30
use Payone\Core\Model\PayoneConfig;
31
32
class RatepayDeviceFingerprint extends Template
33
{
34
    /**
35
     * @var \Payone\Core\Helper\Ratepay
36
     */
37
    protected $ratepayHelper;
38
39
    /**
40
     * @var \Payone\Core\Helper\Payment
41
     */
42
    protected $paymentHelper;
43
44
    /**
45
     * Constructor
46
     *
47
     * @param Template\Context              $context
48
     * @param \Payone\Core\Helper\Ratepay   $ratepayHelper
49
     * @param \Payone\Core\Helper\Payment   $paymentHelper
50
     * @param array                         $data
51
     */
52
    public function __construct(
53
        Template\Context $context,
0 ignored issues
show
Bug introduced by
The type Magento\Framework\View\Element\Template\Context was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
54
        \Payone\Core\Helper\Ratepay $ratepayHelper,
55
        \Payone\Core\Helper\Payment $paymentHelper,
56
        array $data = []
57
    ) {
58
        parent::__construct($context, $data);
59
        $this->ratepayHelper = $ratepayHelper;
60
        $this->paymentHelper = $paymentHelper;
61
    }
62
63
    /**
64
     * Returns snippet id from config
65
     *
66
     * @return string
67
     */
68
    public function getDevicefingerprintSnippetId()
69
    {
70
        return $this->ratepayHelper->getConfigParam('devicefingerprint_snippet_id', 'ratepay', 'payone_misc');
71
    }
72
73
    /**
74
     * Returns token generated by Ratepay helper
75
     *
76
     * @return string
77
     */
78
    public function getDevicefingerprintToken()
79
    {
80
        return $this->ratepayHelper->getRatepayDeviceFingerprintToken();
81
    }
82
83
    /**
84
     * Determine if at least one of the three Ratepay methods is activated
85
     *
86
     * @return false
87
     */
88
    protected function isRatepayMethodActive()
89
    {
90
        if ($this->paymentHelper->isPaymentMethodActive(PayoneConfig::METHOD_RATEPAY_INVOICE) === false ||
91
            $this->paymentHelper->isPaymentMethodActive(PayoneConfig::METHOD_RATEPAY_DEBIT) === false ||
92
            $this->paymentHelper->isPaymentMethodActive(PayoneConfig::METHOD_RATEPAY_INSTALLMENT) === false
93
        ) {
94
            return true;
0 ignored issues
show
Bug Best Practice introduced by
The expression return true returns the type true which is incompatible with the documented return type false.
Loading history...
95
        }
96
        return false;
97
    }
98
99
    /**
100
     * Render block HTML
101
     *
102
     * @return string
103
     */
104
    protected function _toHtml()
105
    {
106
        if ($this->isRatepayMethodActive() === false) {
0 ignored issues
show
introduced by
The condition $this->isRatepayMethodActive() === false is always true.
Loading history...
107
            return '';
108
        }
109
        return parent::_toHtml();
110
    }
111
}
112