Skip to content
Snippets Groups Projects
Select Git revision
  • 9a91616d6c09fed396d5b470fb0ef8d0d562da1e
  • main default protected
  • v0.10
  • 0.10.6
  • 0.10.5
  • 0.10.4
  • 0.10.3
  • 0.10.2
  • 0.10.1
  • 0.10.0
  • 0.9.1
  • 0.9.0
12 results

StoppableBinder.php

Blame
  • StoppableBinder.php 1.12 KiB
    <?php
    
    declare(strict_types=1);
    
    namespace WPDesk\Init\Binding\Binder;
    
    use Psr\Container\ContainerInterface;
    use WPDesk\Init\Binding\Binder;
    use WPDesk\Init\Binding\StoppableBinder as Stop;
    use WPDesk\Init\Binding\Definition;
    use WPDesk\Init\Binding\Definition\HookableDefinition;
    
    class StoppableBinder implements Binder {
    
    	/** @var ContainerInterface */
    	private $container;
    
    	/** @var Binder */
    	private $binder;
    
    	private $should_stop = false;
    
    	public function __construct( Binder $b, ContainerInterface $c ) {
    		$this->binder    = $b;
    		$this->container = $c;
    	}
    
    	public function can_bind( Definition $def ): bool {
    		return $this->binder->can_bind( $def );
    	}
    
    	public function bind( Definition $def ): void {
    		if ( $this->should_stop === true ) {
    			return;
    		}
    
    		$this->binder->bind( $def );
    
    		if ( $this->can_be_stoppable( $def ) ) {
    			$binding = $this->container->get( $def->value() );
    			if ( $binding instanceof Stop && $binding->should_stop() ) {
    				$this->should_stop = true;
    			}
    		}
    	}
    
    	private function can_be_stoppable( Definition $def ): bool {
    		return is_string( $def->value() ) && class_exists( $def->value() );
    	}
    
    }