You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow dependency injected mocks to Manager (barryvdh#245)
By typehinting the Manager class constructor
with concrete implementations, this package will
affect Artisan tests in applications with
Laravel 5.5 auto-discovery enabled.
e.g., EventFake or Mockery partial used during
Artisan integration tests will cause registration
of this package's commands to fail due to
the object not being concrete
Illuminate\Events\Dispatcher.
Instead use inversion of control to dependency
inject by resolving Laravel contracts.
0 commit comments