Fixed various typos throughout laravel folder.

Signed-off-by: Josh Miller <josh@joshmmiller.com>
This commit is contained in:
Josh Miller
2012-07-21 20:18:55 -04:00
parent 845023fc80
commit 0ea30993d4
36 changed files with 159 additions and 159 deletions

View File

@@ -49,7 +49,7 @@ class Bundler extends Task {
// all of its registered dependencies as well.
//
// Each bundle provider implements the Provider interface and
// is repsonsible for retrieving the bundle source from its
// is responsible for retrieving the bundle source from its
// hosting party and installing it into the application.
$path = path('bundle').$this->path($bundle);
@@ -135,7 +135,7 @@ class Bundler extends Task {
$responses[] = $bundle;
// We'll also get the bundle's declared dependenceis so they
// We'll also get the bundle's declared dependencies so they
// can be installed along with the bundle, making it easy
// to install a group of bundles.
$dependencies = $this->get($bundle['dependencies']);

View File

@@ -27,7 +27,7 @@ abstract class Provider {
// When installing a bundle from a Zip archive, we'll first clone
// down the bundle zip into the bundles "working" directory so
// we have a spot to do all of our bundle extration work.
// we have a spot to do all of our bundle extraction work.
$target = $work.'laravel-bundle.zip';
File::put($target, $this->download($url));
@@ -49,7 +49,7 @@ abstract class Provider {
// Once we have the latest modified directory, we should be
// able to move its contents over into the bundles folder
// so the bundle will be usable by the develoepr.
// so the bundle will be usable by the developer.
File::mvdir($latest, $path);
File::rmdir($work.'zip');

View File

@@ -40,7 +40,7 @@ class Database {
$table = $this->table();
// First we need to grab the last batch ID from the migration table,
// as this will allow us to grab the lastest batch of migrations
// as this will allow us to grab the latest batch of migrations
// that need to be run for a rollback command.
$id = $this->batch();

View File

@@ -206,7 +206,7 @@ class Migrator extends Task {
// Once the migration has been created, we'll return the
// migration file name so it can be used by the task
// consumer if necessary for futher work.
// consumer if necessary for further work.
return $file;
}
@@ -223,7 +223,7 @@ class Migrator extends Task {
$prefix = Bundle::class_prefix($bundle);
// The class name is formatted simialrly to tasks and controllers,
// The class name is formatted similarly to tasks and controllers,
// where the bundle name is prefixed to the class if it is not in
// the default "application" bundle.
$class = $prefix.Str::classify($migration);