, ReflectionException, JustTesting , IoC Container .
, . JustTestingInterace MyClass , Laravel ", JustTestingInterface, MyClass."
RouteServiceProvider.php:
public function register()
{
$this->app->bindShared('App\Namespace\JustTestingInterface', 'App\Namespace\MyClass');
}
:
use Illuminate\Routing\Controller;
use App\Namespace\JustTestingInterface;
class TestController extends Controller {
public function test(JustTestingInterface $test)
{
dd($test);
}
}