Example #1
0
 /**
  * Gets the first static row
  *
  * @param $array
  *
  * @return mixed
  */
 public static function Row($array)
 {
     /**
      * Lets get the first row
      */
     $first_row = Query::ReturnFirst($array);
     /**
      * Then lets return it in the form of an array
      */
     return Query::ConvertToArray($first_row);
 }