コード例 #1
0
ファイル: InvalidBinding.php プロジェクト: spiralout/Wires
 function __construct($abstract, $concrete)
 {
     parent::__construct("Invalid binding {$abstract} to {$concrete}");
 }
コード例 #2
0
ファイル: NotBound.php プロジェクト: spiralout/Wires
 function __construct($abstract, $context)
 {
     parent::__construct("{$abstract} not bound in context {$context}");
 }
コード例 #3
0
ファイル: AlreadyBound.php プロジェクト: spiralout/Wires
 function __construct($abstract, $concrete, $context, $existing)
 {
     parent::__construct("Cannot bind {$abstract} to {$concrete} in context {$context}. Already bound to {$existing}");
 }