added facades for core classes.

This commit is contained in:
Taylor Otwell
2011-09-03 22:36:27 -05:00
parent 86da3af7a1
commit 31e2c1c49e
20 changed files with 135 additions and 69 deletions

View File

@@ -1,5 +1,7 @@
<?php namespace Laravel;
class Input_Facade extends Facade { public static $resolve = 'input'; }
class Input {
/**
@@ -7,7 +9,7 @@ class Input {
*
* @var array
*/
private $input;
protected $input;
/**
* The $_GET array for the request.