Issues (12)

src/Kernel/Concerns/Fluent.php (1 issue)

Labels
Severity
1
<?php
2
3
/**
4
 * Interface, used to manage the code more strictly.
5
 *
6
 * PHP version 7.4
7
 *
8
 * @category Concerns
9
 * @package  Chaospelt\Kernel\Concerns
10
 *
11
 * @author  Stf Kolev <[email protected]>
12
 * @license BSD-3-Clause https://opensource.org/licenses/BSD-3-Clause
13
 *
14
 * @link https://github.com/stfkolev/chaospelt
15
 */
16
17
namespace Chaospelt\Kernel\Concerns;
18
19
/**
20
 * Interface, used to manage the code more strictly.
21
 *
22
 * @category Concerns
23
 * @package  Chaospelt\Kernel\Concerns
24
 *
25
 * @author  Stf Kolev <[email protected]>
26
 * @license BSD-3-Clause https://opensource.org/licenses/BSD-3-Clause
27
 *
28
 * @link https://github.com/stfkolev/chaospelt
29
 */
30
interface Fluent
31
{
32
    /**
33
     * Used to instantiate the \Registerable Trait.
34
     *
35
     * @return none
0 ignored issues
show
The type Chaospelt\Kernel\Concerns\none 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...
36
     */
37
    public function invoke();
38
}
39