in model I have
public function afterFetch()
{
if($this->type == 'type1')
{ die('333'); }
}
in controller I have
$feeds = Feed::find("type = 'type1'");
foreach($feeds as $feed){
die('111');
}
I get 333 output, what's going on?