Damien Diels
Damien Diels
When you try to bind differents wrapper to differents entities, the last binding instruction override the first one. Eg : provider : ```php public function register() { $this->app->bind(VideoWrapper::class, function(){ $transport...
J'ai deux wrappers que je bind comme ceci dans le provider ```php public function boot() { // API models Stream::setApi($this->app->make(StreamWrapper::class)); Video::setApi($this->app->make(VideoWrapper::class)); } ``` Lorsque je fais ```php Video::find(1234) ``` je...
Yes, It works ! Many thanks for your help. ps: Token was altered before posting and only valid in my local environment but thank you for your benevolence. Great work,...