1use App\Services\Transistor;
2
3$this->app->resolving(Transistor::class, function ($api, $app) {
4 // Called when container resolves objects of type "HelpSpot\API"...
5});
6
7$this->app->resolving(function ($object, $app) {
8 // Called when container resolves object of any type...
9});