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

Binder.php

Blame
  • Binder.php 188 B
    <?php
    
    declare(strict_types=1);
    
    namespace WPDesk\Init\Binding;
    
    interface Binder {
    
    	public function can_bind( Definition $def ): bool;
    
    	public function bind( Definition $def ): void;
    }