Passed
Push — main ( 7f530d...7aae9b )
by Thierry
05:54
created

ClassExcluded::doNot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace Jaxon\Annotations\Tests\Attr\Ajax;
4
5
use Jaxon\Annotations\Tests\Attr\FuncComponent;
6
7
/**
8
 * @exclude(true)
9
 */
10
class ClassExcluded extends FuncComponent
11
{
12
    /**
13
     * @exclude
14
     */
15
    public function doNot()
16
    {
17
    }
18
19
    /**
20
     * @databag('name' => 'user.name')
21
     * @databag('name' => 'page.number')
22
     */
23
    public function withBags()
24
    {
25
    }
26
27
    /**
28
     * @before('call' => 'funcBefore')
29
     * @after('call' => 'funcAfter')
30
     */
31
    public function cbSingle()
32
    {
33
    }
34
}
35