Ejemplo n.º 1
0
 public static function getLast()
 {
     $found = DBSimple::get(\EmailLogModel::getTableName(), '', 'order by id desc');
     if (empty($found)) {
         throw new \NotFoundException('Last log message not found. Log table empty');
     }
     $log = new \EmailLogModel($found);
     return $log;
 }