Issues (70)

Base/IClass.php (2 issues)

1
<?php
2
3
namespace WebStream\Annotation\Base;
4
5
use WebStream\Container\Container;
0 ignored issues
show
The type WebStream\Container\Container 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...
6
7
/**
8
 * IClass
9
 * @author Ryuichi TANAKA.
10
 * @since 2015/02/10
11
 * @version 0.4
12
 */
13
interface IClass
14
{
15
    /**
16
     * クラスオブジェクトを注入
17
     * @param IAnnotatable 注入先インスタンス
0 ignored issues
show
Documentation Bug introduced by
The doc comment 注入先インスタンス at position 0 could not be parsed: Unknown type name '注入先インスタンス' at position 0 in 注入先インスタンス.
Loading history...
18
     * @param \ReflectionClass リフレクションクラスオブジェクト
19
     * @param Container $container
20
     */
21
    public function onClassInject(IAnnotatable $instance, \ReflectionClass $class, Container $container);
22
}
23