added facades and made other ioc improvements.

This commit is contained in:
Taylor Otwell
2011-08-30 22:09:47 -05:00
parent 501953f2db
commit 0ef96fb8d0
27 changed files with 271 additions and 276 deletions

View File

@@ -3,9 +3,9 @@
class File extends Driver {
/**
* The file manager instance.
* The file engine instance.
*
* @var Laravel\File
* @var Laravel\File_Engine
*/
private $file;
@@ -19,11 +19,11 @@ class File extends Driver {
/**
* Create a new File cache driver instance.
*
* @param Laravel\File $file
* @param string $path
* @param Laravel\File_Engine $file
* @param string $path
* @return void
*/
public function __construct(\Laravel\File $file, $path)
public function __construct(\Laravel\File_Engine $file, $path)
{
$this->file = $file;
$this->path = $path;