| 1 | <?php  | 
            ||
| 11 | class NullContainerBuilder implements ContainerBuilder { | 
            ||
| 12 | |||
| 13 | /**  | 
            ||
| 14 | * @since 1.0  | 
            ||
| 15 | *  | 
            ||
| 16 | 	 * {@inheritDoc} | 
            ||
| 17 | */  | 
            ||
| 18 | 	public function registerCallback( $handlerName, \Closure $callback ) {} | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * @since 1.1  | 
            ||
| 22 | *  | 
            ||
| 23 | 	 * {@inheritDoc} | 
            ||
| 24 | */  | 
            ||
| 25 | 	public function registerCallbackContainer( CallbackContainer $callbackContainer ) {} | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @since 2.0  | 
            ||
| 29 | *  | 
            ||
| 30 | 	 * {@inheritDoc} | 
            ||
| 31 | */  | 
            ||
| 32 | 	public function registerFromFile( $file ) {} | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 | * @since 2.0  | 
            ||
| 36 | *  | 
            ||
| 37 | 	 * {@inheritDoc} | 
            ||
| 38 | */  | 
            ||
| 39 | 	public function registerObject( $serviceName, $instance ) {} | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * @since 1.0  | 
            ||
| 43 | *  | 
            ||
| 44 | 	 * {@inheritDoc} | 
            ||
| 45 | */  | 
            ||
| 46 | 	public function registerExpectedReturnType( $handlerName, $type ) {} | 
            ||
| 47 | |||
| 48 | /**  | 
            ||
| 49 | * @since 1.2  | 
            ||
| 50 | *  | 
            ||
| 51 | 	 * {@inheritDoc} | 
            ||
| 52 | */  | 
            ||
| 53 | 	public function isRegistered( $handlerName ) { return false; } | 
            ||
| 54 | |||
| 55 | /**  | 
            ||
| 56 | * @since 1.1  | 
            ||
| 57 | *  | 
            ||
| 58 | 	 * {@inheritDoc} | 
            ||
| 59 | */  | 
            ||
| 60 | 	public function create( $handlerName ) {} | 
            ||
| 61 | |||
| 62 | /**  | 
            ||
| 63 | * @since 1.0  | 
            ||
| 64 | *  | 
            ||
| 65 | 	 * {@inheritDoc} | 
            ||
| 66 | */  | 
            ||
| 67 | 	public function singleton( $handlerName ) {} | 
            ||
| 68 | |||
| 69 | }  | 
            ||
| 70 |