Skip to content

Commit 63a6b64

Browse files
committed
Some code cleanups
- Full variable names - Fix bold indicator - Back-ticks around code instead of quotes Signed-off-by: Dries Vints <[email protected]>
1 parent c404c09 commit 63a6b64

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

cache.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ Then you may flush all items in the section:
103103

104104
When using the `database` cache driver, you will need to setup a table to contain the cache items. Below is an example `Schema` declaration for the table:
105105

106-
Schema::create('cache', function($t)
106+
Schema::create('cache', function($table)
107107
{
108-
$t->string('key')->unique();
109-
$t->text('value');
110-
$t->integer('expiration');
108+
$table->string('key')->unique();
109+
$table->text('value');
110+
$table->integer('expiration');
111111
});

events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ When registering an event listener, you may use asterisks to specify wildcard li
5555
// Handle the event...
5656
});
5757

58-
This listener will handle all events that begin with "foo.". Note that the full event name is passed as the last argument to the handler.
58+
This listener will handle all events that begin with `foo.`. Note that the full event name is passed as the last argument to the handler.
5959

6060
<a name="using-classes-as-listeners"></a>
6161
## Using Classes As Listeners

localization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The default language for your application is stored in the `app/config/app.php`
4747

4848
The first segment of the string passed to the `get` method is the name of the language file, and the second is the name of the line that should be retrieved.
4949

50-
> **Note*: If a language line does not exist, the key will be returned by the `get` method.
50+
> **Note**: If a language line does not exist, the key will be returned by the `get` method.
5151
5252
**Making Replacements In Lines**
5353

session.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ Sometimes you may wish to store items in the session only for the next request.
6868

6969
When using the `database` session driver, you will need to setup a table to contain the session items. Below is an example `Schema` declaration for the table:
7070

71-
Schema::create('sessions', function($t)
71+
Schema::create('sessions', function($table)
7272
{
73-
$t->string('id')->unique();
74-
$t->text('payload');
75-
$t->integer('last_activity');
73+
$table->string('id')->unique();
74+
$table->text('payload');
75+
$table->integer('last_activity');
7676
});
7777

7878
Of course, you may use the `session:table` Artisan command to generate this migration for you!

0 commit comments

Comments
 (0)