diff options
author | Andrey Andreev <narf@devilix.net> | 2016-02-15 13:37:14 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-02-15 13:37:14 +0100 |
commit | a64d2262e37ea9308865f5d81c1b1ccdfaa52721 (patch) | |
tree | 44c46d9f93a712e5b13821dad57e14e9449733ae /application/config/autoload.php | |
parent | 02fde67322db74df42ef8dc953cc2be3f9fc4ccd (diff) | |
parent | 0d181ee540749c3a5dc147b1e280b7515d1b360e (diff) |
Merge pull request #4453 from EpicKris/feature/Autoload-Driver-Object-Name
Autoload Driver Object Names
Diffstat (limited to 'application/config/autoload.php')
-rw-r--r-- | application/config/autoload.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/config/autoload.php b/application/config/autoload.php index 4bc6bf0ad..aeacbdb66 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -72,6 +72,11 @@ $autoload['libraries'] = array(); | Prototype: | | $autoload['drivers'] = array('cache'); +| +| You can also supply an alternative library name to be assigned in +| the controller: +| +| $autoload['drivers'] = array('cache' => 'cch'); */ $autoload['drivers'] = array(); |