Skip to content

Commit a373ac8

Browse files
committed
Merge branch 'master' into develop
2 parents 82206d3 + eea4713 commit a373ac8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

app/config/auth.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
|--------------------------------------------------------------------------
99
|
1010
| This option controls the authentication driver that will be utilized.
11-
| This drivers manages the retrieval and authentication of the users
11+
| This driver manages the retrieval and authentication of the users
1212
| attempting to get access to protected areas of your application.
1313
|
1414
| Supported: "database", "eloquent"
@@ -68,4 +68,4 @@
6868

6969
),
7070

71-
);
71+
);

app/lang/en/validation.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"array" => "The :attribute must be an array.",
2323
"before" => "The :attribute must be a date before :date.",
2424
"between" => array(
25-
"numeric" => "The :attribute must be between :min - :max.",
26-
"file" => "The :attribute must be between :min - :max kilobytes.",
27-
"string" => "The :attribute must be between :min - :max characters.",
28-
"array" => "The :attribute must have between :min - :max items.",
25+
"numeric" => "The :attribute must be between :min and :max.",
26+
"file" => "The :attribute must be between :min and :max kilobytes.",
27+
"string" => "The :attribute must be between :min and :max characters.",
28+
"array" => "The :attribute must have between :min and :max items.",
2929
),
3030
"confirmed" => "The :attribute confirmation does not match.",
3131
"date" => "The :attribute is not a valid date.",

app/tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase {
55
/**
66
* Creates the application.
77
*
8-
* @return Symfony\Component\HttpKernel\HttpKernelInterface
8+
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
99
*/
1010
public function createApplication()
1111
{

bootstrap/start.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
| Load The Application
4949
|--------------------------------------------------------------------------
5050
|
51-
| Here we will load the Illuminate application. We'll keep this is in a
51+
| Here we will load this Illuminate application. We will keep this in a
5252
| separate location so we can isolate the creation of an application
5353
| from the actual running of the application with a given request.
5454
|

0 commit comments

Comments
 (0)