query ( $query ); return ReceiptItems::getAllFromResult ( $result ); } /** * Zwraca w formie tablicy wszystkie wiersze odpowiedzi na zapytanie * * @param * $result * @return Zwraca wiersze w postacie tablicy */ public static function getAllFromResult($result) { $itemsArray = array (); while ( $row = $result->fetch_assoc () ) { array_push ( $itemsArray, $row ); } return $itemsArray; } } ?>