[eluser]altrano[/eluser]
[quote author="stuffradio" date="1287889538"]Can you explain differently? What do you mean?[/quote]
simply can i use static calls of methods or not, i don't now how to describe diffently,
in symfony many classes or methods in his classes are static
Code:
class Example
{
public static function get()
{
// some code
}
}
then static call this like
can i call a method like
Code:
$this->example::get();
instead like
Code:
$this->examlpe->get();
in Controllers or must change methods to
public function get()
to use it in CI Controllers?
i hope now you better understand my question, sorry my english very bad to describe better.