Example #1
0
File: hit.php Project: jotavejv/CMS
 public static function factory($id = null)
 {
     $instance = new Hit();
     if (!empty($id)) {
         $instance->where('id', $id)->get();
     }
     return $instance;
 }