Passed
Push — main ( 1402e3...cedac2 )
by Thierry
18:03
created

Scope::__construct()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 4
eloc 7
c 1
b 0
f 0
nc 4
nop 3
dl 0
loc 10
rs 10
1
<?php
2
3
namespace Lagdo\UiBuilder\Html;
4
5
class Scope extends Support\Scope
6
{
7
    /**
8
     * @var bool
9
     */
10
    public $isInputGroup = false;
11
12
    /**
13
     * @var bool
14
     */
15
    public $isButtonGroup = false;
16
17
    /**
18
     * True if the scope was added to wrap another one, due to a framework requirement.
19
     *
20
     * @var bool
21
     */
22
    public $isWrapper = false;
23
}
24