Skip to content

Commit cba4f7b

Browse files
committed
Fix bridge code
1 parent 77928c6 commit cba4f7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Writerside/topics/integrations/laravel-adapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To work with Laravel HTTP kernel you can use specific
3838
```php
3939
use Boson\Application;
4040
use Boson\ApplicationCreateInfo;
41-
use Boson\Bridge\Http\LaravelHttpAdapter;
41+
use Boson\Bridge\Laravel\Http\LaravelHttpAdapter;
4242
use Boson\WebView\Api\Schemes\Event\SchemeRequestReceived;
4343

4444
// Create an application

Writerside/topics/integrations/psr7-adapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ corresponding adapter `Boson\Bridge\Psr\Http\Psr7HttpAdapter`.
3232
```php
3333
use Boson\Application;
3434
use Boson\ApplicationCreateInfo;
35-
use Boson\Bridge\Http\Psr7HttpAdapter;
35+
use Boson\Bridge\Psr\Http\Psr7HttpAdapter;
3636
use Boson\WebView\Api\Schemes\Event\SchemeRequestReceived;
3737

3838
// Create an application

Writerside/topics/integrations/symfony-adapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To work with Symfony HTTP kernel you can use specific
3030
```php
3131
use Boson\Application;
3232
use Boson\ApplicationCreateInfo;
33-
use Boson\Bridge\Http\SymfonyHttpAdapter;
33+
use Boson\Bridge\Symfony\Http\SymfonyHttpAdapter;
3434
use Boson\WebView\Api\Schemes\Event\SchemeRequestReceived;
3535

3636
// Create an application

0 commit comments

Comments
 (0)