Foo
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
1
<?php
2
3
/*
4
 * This file is part of the puli/discovery package.
5
 *
6
 * (c) Bernhard Schussek <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Puli\Discovery\Test\Fixtures;
13
14
/**
15
 * @since  1.0
16
 *
17
 * @author Bernhard Schussek <[email protected]>
18
 *
19
 * @internal
20
 */
21
interface Foo
22
{
23
    const clazz = __CLASS__;
0 ignored issues
show
Coding Style introduced by
This class constant is not uppercase (expected CLAZZ).
Loading history...
24
}
25