Merge pull request #664 from franzliedke/patch-3

Remove more unneeded Closure references
This commit is contained in:
Taylor Otwell 2012-05-11 12:18:15 -07:00
commit 135b6d5132
8 changed files with 7 additions and 10 deletions

View File

@ -1,4 +1,4 @@
<?php namespace Laravel\Cache\Drivers; use Closure;
<?php namespace Laravel\Cache\Drivers;
abstract class Driver {

View File

@ -1,7 +1,5 @@
<?php namespace Laravel; defined('DS') or die('No direct script access.');
use Closure;
class Config {
/**

View File

@ -1,4 +1,4 @@
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Cookie {

View File

@ -97,14 +97,14 @@ protected function grammar()
/**
* Execute a callback wrapped in a database transaction.
*
* @param Closure $callback
* @param callback $callback
* @return void
*/
public function transaction($callback)
{
$this->pdo->beginTransaction();
// After beginning the database transaction, we will call the Closure
// After beginning the database transaction, we will call the callback
// so that it can do its database work. If an exception occurs we'll
// rollback the transaction and re-throw back to the developer.
try

View File

@ -1,4 +1,4 @@
<?php namespace Laravel; use Closure, FilesystemIterator as fIterator;
<?php namespace Laravel; use FilesystemIterator as fIterator;
class File {

View File

@ -1,4 +1,4 @@
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Lang {

View File

@ -1,4 +1,4 @@
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Request {

View File

@ -1,6 +1,5 @@
<?php namespace Laravel\Session;
use Closure;
use Laravel\Str;
use Laravel\Config;
use Laravel\Cookie;