Welcome Guest, Not a member yet? Register   Sign In
Basic PHP Class doesn't recognized !!!
#1

Hello,

I made my own Library in /App/Libraries directory, in my Lib, i inherited from basic php class. 

They are Iterator and Countable, but inside CI4 there are not recognized ! 

Code:
15 namespace app\Libraries;

...

22 class MasterCollection implements Iterator, Countable {
23     
24     protected $Items = array();
25  
26     public function count(): int 
27     {
28         return count($this->Items);     
29     }


Thanks !
Reply
#2

\Iterator, \Countable
or
use Iterator;
use Countable;
Reply
#3

Thanks ! it works...
Reply




Theme © iAndrew 2016 - Forum software by © MyBB