Ejemplo n.º 1
0
 function __construct($abstract, $concrete)
 {
     parent::__construct("Invalid binding {$abstract} to {$concrete}");
 }
Ejemplo n.º 2
0
 function __construct($abstract, $context)
 {
     parent::__construct("{$abstract} not bound in context {$context}");
 }
Ejemplo n.º 3
0
 function __construct($abstract, $concrete, $context, $existing)
 {
     parent::__construct("Cannot bind {$abstract} to {$concrete} in context {$context}. Already bound to {$existing}");
 }