We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68aaa6 commit 545dc54Copy full SHA for 545dc54
tests/Doubles/LiapTestProvider.php
@@ -2,7 +2,6 @@
2
3
namespace Imdhemy\Purchases\Tests\Doubles;
4
5
-use Illuminate\Foundation\Application;
6
use Illuminate\Support\ServiceProvider;
7
use Imdhemy\Purchases\Contracts\UrlGenerator as UrlGeneratorContract;
8
use Imdhemy\Purchases\Services\AppStoreTestNotificationServiceBuilder;
@@ -29,7 +28,11 @@ public function boot(): void
29
28
*/
30
public function register(): void
31
{
32
- $this->app->bind(UrlGeneratorContract::class, UrlGeneratorDouble::class);
+ $this->app->bind(
+ UrlGeneratorContract::class,
33
+ UrlGeneratorDouble::class
34
+ );
35
+
36
$this->app->bind(
37
AppStoreTestNotificationServiceBuilder::class,
38
AppStoreTestNotificationServiceBuilderDouble::class
0 commit comments