Skip to content

Commit

Permalink
[10.x] Consider 'Models' folder for the models path usages (#8952)
Browse files Browse the repository at this point in the history
* [10.x] Consider 'Models' folder for the models path usages

* Update container.md

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
  • Loading branch information
majidalaeinia and taylorotwell committed Aug 11, 2023
1 parent 550117a commit 3653f54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions octane.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,8 @@ While building your application, you should take special care to avoid creating
When using Swoole, you may execute operations concurrently via light-weight background tasks. You may accomplish this using Octane's `concurrently` method. You may combine this method with PHP array destructuring to retrieve the results of each operation:

```php
use App\User;
use App\Server;
use App\Models\User;
use App\Models\Server;
use Laravel\Octane\Facades\Octane;

[$users, $servers] = Octane::concurrently([
Expand Down
4 changes: 2 additions & 2 deletions queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ In certain cases, you may want to define a specific "key" that makes the job uni

<?php

use App\Product;
use App\Models\Product;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Contracts\Queue\ShouldBeUnique;

Expand Down Expand Up @@ -306,7 +306,7 @@ By default, unique jobs are "unlocked" after a job completes processing or fails

<?php

use App\Product;
use App\Models\Product;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing;

Expand Down

0 comments on commit 3653f54

Please sign in to comment.