Select Git revision
changelog.txt
-
Marcin Kolanko authoredMarcin Kolanko authored
To find the state of this project's repository at the time of any of these versions, check out the tags.
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;
}