Welcome Guest, Not a member yet? Register   Sign In
Why doesn't CodeIgniter declare its variables?
#1

[eluser]Bjørn Børresen[/eluser]
Here's a snippet from CI_Base:

Code:
class CI_Base extends CI_Loader {

    function CI_Base()
    {
        // This allows syntax like $this->load->foo() to work
        parent::CI_Loader();
        $this->load =& $this;
        
        // This allows resources used within controller constructors to work
        global $OBJ;
        $OBJ = $this->load; // Do NOT use a reference.
    }
}

In the constructor $this->load is set, but why isn't the variable declared?

I'm trying to get auto-completion to work, and declared variables would help.
#2

[eluser]Sean Gates[/eluser]
You mean for autocompletion in your editor?
#3

[eluser]Bjørn Børresen[/eluser]
Yes, specifically Zend Studio, or any Eclipse based IDE really...




Theme © iAndrew 2016 - Forum software by © MyBB