remove comment bloat.

This commit is contained in:
Taylor Otwell
2011-08-14 19:40:52 -05:00
parent 83ab60922b
commit d197a97aac
5 changed files with 0 additions and 106 deletions

View File

@@ -32,14 +32,6 @@ class Config {
* If the name of a configuration file is passed without specifying an item, the
* entire configuration array will be returned.
*
* <code>
* // Get the application timezone
* $timezone = Config::get('application.timezone');
*
* // Get the application configuration array
* $application = Config::get('application');
* </code>
*
* @param string $key
* @param string $default
* @return array
@@ -63,14 +55,6 @@ class Config {
*
* If a configuration item is not specified, the entire configuration array will be set.
*
* <code>
* // Set the application timezone
* Config::set('application.timezone', 'America/Chicago');
*
* // Set the application configuration array
* Config::set('application', array());
* </code>
*
* @param string $key
* @param mixed $value
* @return void