Exemplo n.º 1
0
 protected function instantiate($attributes)
 {
     $class = get_class($this);
     if (isset($attributes['type'])) {
         $class = ServiceHelper::classNameByType($attributes['type']);
     }
     $model = new $class(null);
     return $model;
 }