Skip to content

Commit 9c823d4

Browse files
committed
Merge branch 'master' of github.com:laravel/laravel
2 parents 24e3828 + f1435ce commit 9c823d4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

laravel/cli/tasks/bundle/bundler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function get($bundles)
125125

126126
if ($response['status'] == 'not-found')
127127
{
128-
throw new \Exception("There is not a bundle named [$bundle].");
128+
throw new \Exception("There is no bundle named [$bundle].");
129129
}
130130

131131
// If the bundle was retrieved successfully, we will add it to

laravel/core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
|
149149
| Finally we will register all of the bundles that have been defined for
150150
| the application. None of them will be started, yet but will be setup
151-
| so that they may be started by the develop at any time.
151+
| so that they may be started by the developer at any time.
152152
|
153153
*/
154154

laravel/routing/controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public function response($method, $parameters = array())
312312

313313
$response = call_user_func_array(array($this, $action), $parameters);
314314

315-
// If the controller has specified a layout view. The response
315+
// If the controller has specified a layout view the response
316316
// returned by the controller method will be bound to that
317317
// view and the layout will be considered the response.
318318
if (is_null($response) and ! is_null($this->layout))

laravel/routing/router.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public static function group($attributes, Closure $callback)
161161
*
162162
* <code>
163163
* // Register a route with the router
164-
* Router::register('GET' ,'/', function() {return 'Home!';});
164+
* Router::register('GET', '/', function() {return 'Home!';});
165165
*
166166
* // Register a route that handles multiple URIs with the router
167167
* Router::register(array('GET', '/', 'GET /home'), function() {return 'Home!';});
@@ -542,7 +542,7 @@ public static function routes()
542542
$fallback = array_get(static::$fallback, $method, array());
543543

544544
// When building the array of routes, we'll merge in all of the fallback
545-
// routes for each request methdo individually. This allows us to avoid
545+
// routes for each request method individually. This allows us to avoid
546546
// collisions when merging the arrays together.
547547
$routes[$method] = array_merge($routes[$method], $fallback);
548548
}

laravel/url.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static function home($https = false)
4040
$route = Router::find('home');
4141

4242
// If a route named "home" exists, we'll route to that instead of using
43-
// the single slash root URI. THis allows the HTTPS attribute to be
43+
// the single slash root URI. This allows the HTTPS attribute to be
4444
// respected instead of being hard-coded in the redirect.
4545
if ( ! is_null($route))
4646
{

0 commit comments

Comments
 (0)