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

@@ -1,16 +1,18 @@
<?php namespace Laravel;
class Download_Facade extends Facade { public static $resolve = 'download'; }
class Download extends Response {
/**
* The file manager instance.
* The file engine instance.
*
* @var File
*/
protected $file;
/**
* Create a new download generator instance.
* Create a new download engine instance.
*
* @param File $file
* @return void