Skip to content

Commit f05a413

Browse files
authored
Header fixes (#9852)
1 parent 25ab5b2 commit f05a413

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

middleware.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ It's best to envision middleware as a series of "layers" HTTP requests must pass
6060
> [!NOTE]
6161
> All middleware are resolved via the [service container](/docs/{{version}}/container), so you may type-hint any dependencies you need within a middleware's constructor.
6262
63-
<a name="before-after-middleware"></a>
6463
<a name="middleware-and-responses"></a>
6564
#### Middleware and Responses
6665

routing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@ Typically, implicit model binding will not retrieve models that have been [soft
469469
return $user->email;
470470
})->withTrashed();
471471

472-
<a name="customizing-the-key"></a>
473472
<a name="customizing-the-default-key-name"></a>
474473
#### Customizing the Key
475474

session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The `pull` method will retrieve and delete an item from the session in a single
199199

200200
$value = $request->session()->pull('key', 'default');
201201

202-
<a name="#incrementing-and-decrementing-session-values"></a>
202+
<a name="incrementing-and-decrementing-session-values"></a>
203203
#### Incrementing and Decrementing Session Values
204204

205205
If your session data contains an integer you wish to increment or decrement, you may use the `increment` and `decrement` methods:

strings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ The `Str::camel` method converts the given string to `camelCase`:
363363
// 'fooBar'
364364

365365
<a name="method-char-at"></a>
366-
367366
#### `Str::charAt()` {.collection-method}
368367

369368
The `Str::charAt` method returns the character at the specified index. If the index is out of bounds, `false` is returned:

0 commit comments

Comments
 (0)