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:40:20 +0100 |
commit | 44d3b185ae7a15e50bd595440187c6c863a13415 (patch) | |
tree | 54592475bd72eab9d9036dc9cab511a45b0d8ef9 /application | |
parent | 8215e2fcf828964b232e9f48befac4f08fa11187 (diff) |
Merge pull request #4453 from EpicKris/feature/Autoload-Driver-Object-Name
Autoload Driver Object Names
Diffstat (limited to 'application')
-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(); |