diff --git a/laravel/cli/tasks/bundle/providers/provider.php b/laravel/cli/tasks/bundle/providers/provider.php index 7cadacc5..13bce79e 100644 --- a/laravel/cli/tasks/bundle/providers/provider.php +++ b/laravel/cli/tasks/bundle/providers/provider.php @@ -38,8 +38,7 @@ protected function zipball($url, $bundle, $path) // Once we have the Zip archive, we can open it and extract it // into the working directory. By convention, we expect the - // archive to contain one root directory, and all of the - // bundle contents should be stored in that directory. + // archive to contain one root directory with the bundle. $zip->extractTo($work); $latest = File::latest($work)->getRealPath(); diff --git a/laravel/cli/tasks/session/manager.php b/laravel/cli/tasks/session/manager.php index 19a38bb3..2095a881 100644 --- a/laravel/cli/tasks/session/manager.php +++ b/laravel/cli/tasks/session/manager.php @@ -30,8 +30,7 @@ public function table($arguments = array()) // To create the session table, we will actually create a database // migration and then run it. This allows the application to stay - // portable through migrations while still having a session table - // generated on the database. + // portable through the framework's migrations system. $migration = $migrator->make(array('create_session_table')); $stub = path('sys').'cli/tasks/session/migration'.EXT; @@ -40,8 +39,7 @@ public function table($arguments = array()) // By default no session driver is specified in the configuration. // Since the developer is requesting that the session table be - // created on the database, we'll set the driver to database - // to save an extra step for the developer. + // created on the database, we'll set the driver. $config = File::get(path('app').'config/session'.EXT); $config = str_replace( diff --git a/laravel/database/query.php b/laravel/database/query.php index 55699526..8aa7bb1f 100644 --- a/laravel/database/query.php +++ b/laravel/database/query.php @@ -3,7 +3,6 @@ use Closure; use Laravel\Database; use Laravel\Paginator; -use Laravel\Database\Query\Grammars\Grammar; use Laravel\Database\Query\Grammars\SQLServer; class Query { @@ -107,7 +106,7 @@ class Query { * @param string $table * @return void */ - public function __construct(Connection $connection, Grammar $grammar, $table) + public function __construct(Connection $connection, Query\Grammars\Grammar $grammar, $table) { $this->from = $table; $this->grammar = $grammar;