1 | <?php |
||
23 | class DependencyInjectionArgument |
||
24 | { |
||
25 | /** |
||
26 | * Checks that the argument passed is an instance of Definition for the given class. |
||
27 | * |
||
28 | * @param string $class FQCN |
||
29 | * |
||
30 | * @return \Prophecy\Argument\Token\CallbackToken |
||
31 | */ |
||
32 | public static function definition($class) |
||
45 | |||
46 | /** |
||
47 | * Checks that the argument passed is an instance of FileResource with the given resource. |
||
48 | * |
||
49 | * @param string $filePath |
||
50 | * |
||
51 | * @return \Prophecy\Argument\Token\CallbackToken |
||
52 | */ |
||
53 | public static function service($filePath) |
||
64 | } |
||
65 |