Welcome Guest, Not a member yet? Register   Sign In
Constructor - Assigning class variables
#1
Question 
(This post was last modified: 05-11-2020, 10:58 PM by jreklund.)

Code:
class Home extends BaseController
{
    var $cache;

    public function __contruct()
    {
        parent::__construct();
        $this->cache = \Config\Services::cache();
    }
    public function reset()
    {
        $this->cache->clean();
    }
}

assume i have create a web cache.

the idea is i dont want to keep assign the same $cache in every method.

So contructor should do the job.

but when i load the page, it shows -> Undefined variable: cache

how to fix my code/this issue?
Reply
#2

You should not named it "var $cache;". It should be "protected $cache;".
Reply




Theme © iAndrew 2016 - Forum software by © MyBB