Passed
Push — 2.x ( 9cccdb...7ea17f )
by Terry
01:58
created

ComponentProvider::removeDeniedItems()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of the Shieldon package.
4
 *
5
 * (c) Terry L. <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 * 
10
 * php version 7.1.0
11
 * 
12
 * @category  Web-security
13
 * @package   Shieldon
14
 * @author    Terry Lin <[email protected]>
15
 * @copyright 2019 terrylinooo
16
 * @license   https://github.com/terrylinooo/shieldon/blob/2.x/LICENSE MIT
17
 * @link      https://github.com/terrylinooo/shieldon
18
 * @see       https://shieldon.io
19
 */
20
21
declare(strict_types=1);
22
23
namespace Shieldon\Firewall\Component;
24
25
/**
26
 * ComponentPrivider
27
 */
28
abstract class ComponentProvider
29
{
30
    /**
31
     * It is really strict.
32
     *
33
     * @var bool
34
     */
35
    protected $strictMode = false;
36
37
    /**
38
     * Enable strict mode.
39
     * 
40
     * @param bool $bool Set true to enble strict mode, false to disable it overwise.
41
     *
42
     * @return void
43
     */
44
    public function setStrict(bool $bool): void
45
    {
46
        $this->strictMode = $bool;
47
    }
48
49
    /**
50
     * Unique deny status code.
51
     *
52
     * @return int
53
     */
54
    abstract function getDenyStatusCode(): int;
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
55
}
56