Skip to content

Commit c47fca3

Browse files
authored
Fix anchor link for assertServiceUnavailable and line break in Artisan documentation (#10203)
* fix line break in Artisan documentation * Fix anchor link for assertServiceUnavailable method
1 parent d0ecae6 commit c47fca3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

artisan.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -692,8 +692,7 @@ $this->newLine(3);
692692
<a name="tables"></a>
693693
#### Tables
694694

695-
The `table` method makes it easy to correctly format multiple rows / columns of data. All you need to do is provide the column names and the data for the table and Laravel will
696-
automatically calculate the appropriate width and height of the table for you:
695+
The `table` method makes it easy to correctly format multiple rows / columns of data. All you need to do is provide the column names and the data for the table and Laravel will automatically calculate the appropriate width and height of the table for you:
697696

698697
```php
699698
use App\Models\User;

http-tests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ Laravel's `Illuminate\Testing\TestResponse` class provides a variety of custom a
10041004
[assertSeeText](#assert-see-text)
10051005
[assertSeeTextInOrder](#assert-see-text-in-order)
10061006
[assertServerError](#assert-server-error)
1007-
[assertServiceUnavailable](#assert-server-unavailable)
1007+
[assertServiceUnavailable](#assert-service-unavailable)
10081008
[assertSessionHas](#assert-session-has)
10091009
[assertSessionHasInput](#assert-session-has-input)
10101010
[assertSessionHasAll](#assert-session-has-all)
@@ -1607,7 +1607,7 @@ Assert that the response has a server error (>= 500 , < 600) HTTP status code:
16071607
$response->assertServerError();
16081608
```
16091609

1610-
<a name="assert-server-unavailable"></a>
1610+
<a name="assert-service-unavailable"></a>
16111611
#### assertServiceUnavailable
16121612

16131613
Assert that the response has a "Service Unavailable" (503) HTTP status code:

0 commit comments

Comments
 (0)