From c5f288d1a51c62f2e74c8793f06834437e95f884 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Sat, 20 Jul 2013 16:32:39 +0200 Subject: [PATCH 1/4] Remove space and add global class reference in docblock Removed an unnecessary space before a comments rule and added a backslash to reference the global namespace in a docblock. Signed-off-by: Dries Vints --- app/start/local.php | 2 +- app/tests/TestCase.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/start/local.php b/app/start/local.php index adab104c..3d148509 100644 --- a/app/start/local.php +++ b/app/start/local.php @@ -1,3 +1,3 @@ Date: Wed, 24 Jul 2013 08:34:30 -0500 Subject: [PATCH 2/4] Fixed very minor typo --- app/config/auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/auth.php b/app/config/auth.php index 62ea9c3d..86353dc2 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -8,7 +8,7 @@ |-------------------------------------------------------------------------- | | This option controls the authentication driver that will be utilized. - | This drivers manages the retrieval and authentication of the users + | This driver manages the retrieval and authentication of the users | attempting to get access to protected areas of your application. | | Supported: "database", "eloquent" @@ -60,4 +60,4 @@ ), -); \ No newline at end of file +); From d734a416e07f0d20bcfeb22e9e26591250d9819d Mon Sep 17 00:00:00 2001 From: Raphael Mobis Tacla Date: Sat, 26 Oct 2013 18:31:29 -0200 Subject: [PATCH 3/4] Replace dash for 'and' in `between` validation rules. Fixes #2377 --- app/lang/en/validation.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/lang/en/validation.php b/app/lang/en/validation.php index 5a24a40c..4fc83ff1 100644 --- a/app/lang/en/validation.php +++ b/app/lang/en/validation.php @@ -22,10 +22,10 @@ "array" => "The :attribute must be an array.", "before" => "The :attribute must be a date before :date.", "between" => array( - "numeric" => "The :attribute must be between :min - :max.", - "file" => "The :attribute must be between :min - :max kilobytes.", - "string" => "The :attribute must be between :min - :max characters.", - "array" => "The :attribute must have between :min - :max items.", + "numeric" => "The :attribute must be between :min and :max.", + "file" => "The :attribute must be between :min and :max kilobytes.", + "string" => "The :attribute must be between :min and :max characters.", + "array" => "The :attribute must have between :min and :max items.", ), "confirmed" => "The :attribute confirmation does not match.", "date" => "The :attribute is not a valid date.", From eea4713e7c2505c87b8b035024da0925bb704fd2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 30 Oct 2013 09:46:32 -0500 Subject: [PATCH 4/4] Fix grammar. --- bootstrap/start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/start.php b/bootstrap/start.php index 9848f9bc..1cd10a3c 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -50,7 +50,7 @@ | Load The Application |-------------------------------------------------------------------------- | -| Here we will load the Illuminate application. We'll keep this is in a +| Here we will load this Illuminate application. We will keep this in a | separate location so we can isolate the creation of an application | from the actual running of the application with a given request. |