Skip to content

Commit ee8f280

Browse files
[12.x] Format remaining tables (#10488)
* Update authentication.md * Update pagination.md * Update passport.md * Update releases.md * Update scheduling.md
1 parent dcd1372 commit ee8f280

File tree

5 files changed

+51
-51
lines changed

5 files changed

+51
-51
lines changed

authentication.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -825,19 +825,19 @@ Laravel dispatches a variety of [events](/docs/{{version}}/events) during the au
825825

826826
<div class="overflow-auto">
827827

828-
| Event Name |
829-
| --- |
830-
| `Illuminate\Auth\Events\Registered` |
831-
| `Illuminate\Auth\Events\Attempting` |
832-
| `Illuminate\Auth\Events\Authenticated` |
833-
| `Illuminate\Auth\Events\Login` |
834-
| `Illuminate\Auth\Events\Failed` |
835-
| `Illuminate\Auth\Events\Validated` |
836-
| `Illuminate\Auth\Events\Verified` |
837-
| `Illuminate\Auth\Events\Logout` |
828+
| Event Name |
829+
| -------------------------------------------- |
830+
| `Illuminate\Auth\Events\Registered` |
831+
| `Illuminate\Auth\Events\Attempting` |
832+
| `Illuminate\Auth\Events\Authenticated` |
833+
| `Illuminate\Auth\Events\Login` |
834+
| `Illuminate\Auth\Events\Failed` |
835+
| `Illuminate\Auth\Events\Validated` |
836+
| `Illuminate\Auth\Events\Verified` |
837+
| `Illuminate\Auth\Events\Logout` |
838838
| `Illuminate\Auth\Events\CurrentDeviceLogout` |
839-
| `Illuminate\Auth\Events\OtherDeviceLogout` |
840-
| `Illuminate\Auth\Events\Lockout` |
841-
| `Illuminate\Auth\Events\PasswordReset` |
839+
| `Illuminate\Auth\Events\OtherDeviceLogout` |
840+
| `Illuminate\Auth\Events\Lockout` |
841+
| `Illuminate\Auth\Events\PasswordReset` |
842842

843843
</div>

pagination.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -363,28 +363,28 @@ Each paginator instance provides additional pagination information via the follo
363363

364364
<div class="overflow-auto">
365365

366-
| Method | Description |
367-
| --- | --- |
368-
| `$paginator->count()` | Get the number of items for the current page. |
369-
| `$paginator->currentPage()` | Get the current page number. |
370-
| `$paginator->firstItem()` | Get the result number of the first item in the results. |
371-
| `$paginator->getOptions()` | Get the paginator options. |
372-
| `$paginator->getUrlRange($start, $end)` | Create a range of pagination URLs. |
373-
| `$paginator->hasPages()` | Determine if there are enough items to split into multiple pages. |
374-
| `$paginator->hasMorePages()` | Determine if there are more items in the data store. |
375-
| `$paginator->items()` | Get the items for the current page. |
376-
| `$paginator->lastItem()` | Get the result number of the last item in the results. |
377-
| `$paginator->lastPage()` | Get the page number of the last available page. (Not available when using `simplePaginate`). |
378-
| `$paginator->nextPageUrl()` | Get the URL for the next page. |
379-
| `$paginator->onFirstPage()` | Determine if the paginator is on the first page. |
380-
| `$paginator->onLastPage()` | Determine if the paginator is on the last page. |
381-
| `$paginator->perPage()` | The number of items to be shown per page. |
382-
| `$paginator->previousPageUrl()` | Get the URL for the previous page. |
383-
| `$paginator->total()` | Determine the total number of matching items in the data store. (Not available when using `simplePaginate`). |
384-
| `$paginator->url($page)` | Get the URL for a given page number. |
385-
| `$paginator->getPageName()` | Get the query string variable used to store the page. |
386-
| `$paginator->setPageName($name)` | Set the query string variable used to store the page. |
387-
| `$paginator->through($callback)` | Transform each item using a callback. |
366+
| Method | Description |
367+
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
368+
| `$paginator->count()` | Get the number of items for the current page. |
369+
| `$paginator->currentPage()` | Get the current page number. |
370+
| `$paginator->firstItem()` | Get the result number of the first item in the results. |
371+
| `$paginator->getOptions()` | Get the paginator options. |
372+
| `$paginator->getUrlRange($start, $end)` | Create a range of pagination URLs. |
373+
| `$paginator->hasPages()` | Determine if there are enough items to split into multiple pages. |
374+
| `$paginator->hasMorePages()` | Determine if there are more items in the data store. |
375+
| `$paginator->items()` | Get the items for the current page. |
376+
| `$paginator->lastItem()` | Get the result number of the last item in the results. |
377+
| `$paginator->lastPage()` | Get the page number of the last available page. (Not available when using `simplePaginate`). |
378+
| `$paginator->nextPageUrl()` | Get the URL for the next page. |
379+
| `$paginator->onFirstPage()` | Determine if the paginator is on the first page. |
380+
| `$paginator->onLastPage()` | Determine if the paginator is on the last page. |
381+
| `$paginator->perPage()` | The number of items to be shown per page. |
382+
| `$paginator->previousPageUrl()` | Get the URL for the previous page. |
383+
| `$paginator->total()` | Determine the total number of matching items in the data store. (Not available when using `simplePaginate`). |
384+
| `$paginator->url($page)` | Get the URL for a given page number. |
385+
| `$paginator->getPageName()` | Get the query string variable used to store the page. |
386+
| `$paginator->setPageName($name)` | Set the query string variable used to store the page. |
387+
| `$paginator->through($callback)` | Transform each item using a callback. |
388388

389389
</div>
390390

passport.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,10 +1312,10 @@ Passport raises events when issuing access tokens and refresh tokens. You may [l
13121312

13131313
<div class="overflow-auto">
13141314

1315-
| Event Name |
1316-
| --- |
1317-
| `Laravel\Passport\Events\AccessTokenCreated` |
1318-
| `Laravel\Passport\Events\AccessTokenRevoked` |
1315+
| Event Name |
1316+
| --------------------------------------------- |
1317+
| `Laravel\Passport\Events\AccessTokenCreated` |
1318+
| `Laravel\Passport\Events\AccessTokenRevoked` |
13191319
| `Laravel\Passport\Events\RefreshTokenCreated` |
13201320

13211321
</div>

releases.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ For all Laravel releases, bug fixes are provided for 18 months and security fixe
2323

2424
<div class="overflow-auto">
2525

26-
| Version | PHP (*) | Release | Bug Fixes Until | Security Fixes Until |
27-
| --- | --- | --- | --- | --- |
28-
| 10 | 8.1 - 8.3 | February 14th, 2023 | August 6th, 2024 | February 4th, 2025 |
29-
| 11 | 8.2 - 8.4 | March 12th, 2024 | September 3rd, 2025 | March 12th, 2026 |
30-
| 12 | 8.2 - 8.4 | February 24th, 2025 | August 13th, 2026 | February 24th, 2027 |
31-
| 13 | 8.3 - 8.4 | Q1 2026 | Q3 2027 | Q1 2028 |
26+
| Version | PHP (*) | Release | Bug Fixes Until | Security Fixes Until |
27+
| ------- | --------- | ------------------- | ------------------- | -------------------- |
28+
| 10 | 8.1 - 8.3 | February 14th, 2023 | August 6th, 2024 | February 4th, 2025 |
29+
| 11 | 8.2 - 8.4 | March 12th, 2024 | September 3rd, 2025 | March 12th, 2026 |
30+
| 12 | 8.2 - 8.4 | February 24th, 2025 | August 13th, 2026 | February 24th, 2027 |
31+
| 13 | 8.3 - 8.4 | Q1 2026 | Q3 2027 | Q1 2028 |
3232

3333
</div>
3434

scheduling.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -623,12 +623,12 @@ Laravel dispatches a variety of [events](/docs/{{version}}/events) during the sc
623623

624624
<div class="overflow-auto">
625625

626-
| Event Name |
627-
| --- |
628-
| `Illuminate\Console\Events\ScheduledTaskStarting` |
629-
| `Illuminate\Console\Events\ScheduledTaskFinished` |
626+
| Event Name |
627+
| ----------------------------------------------------------- |
628+
| `Illuminate\Console\Events\ScheduledTaskStarting` |
629+
| `Illuminate\Console\Events\ScheduledTaskFinished` |
630630
| `Illuminate\Console\Events\ScheduledBackgroundTaskFinished` |
631-
| `Illuminate\Console\Events\ScheduledTaskSkipped` |
632-
| `Illuminate\Console\Events\ScheduledTaskFailed` |
631+
| `Illuminate\Console\Events\ScheduledTaskSkipped` |
632+
| `Illuminate\Console\Events\ScheduledTaskFailed` |
633633

634634
</div>

0 commit comments

Comments
 (0)