1 | <?php |
||
12 | class NullCallbackLoader implements CallbackLoader { |
||
13 | |||
14 | /** |
||
15 | * @since 1.0 |
||
16 | * |
||
17 | * {@inheritDoc} |
||
18 | */ |
||
19 | public function registerCallback( $handlerName, \Closure $callback ) {} |
||
20 | |||
21 | /** |
||
22 | * @since 1.0 |
||
23 | * |
||
24 | * {@inheritDoc} |
||
25 | */ |
||
26 | public function registerExpectedReturnType( $handlerName, $type ) {} |
||
27 | |||
28 | /** |
||
29 | * @since 1.1 |
||
30 | * |
||
31 | * {@inheritDoc} |
||
32 | */ |
||
33 | public function registerCallbackContainer( CallbackContainer $callbackContainer ) {} |
||
34 | |||
35 | /** |
||
36 | * @since 1.0 |
||
37 | * |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function load( $handlerName ) {} |
||
41 | |||
42 | /** |
||
43 | * @since 1.2 |
||
44 | * |
||
45 | * {@inheritDoc} |
||
46 | */ |
||
47 | public function create( $handlerName ) {} |
||
48 | |||
49 | /** |
||
50 | * @since 1.0 |
||
51 | * |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function singleton( $handlerName ) {} |
||
55 | |||
56 | } |
||
57 |