php-vivace/db

View on GitHub
src/Reader.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: macbookpro
 * Date: 23.04.2018
 * Time: 17:49
 */

namespace vivace\db;


interface Reader extends \IteratorAggregate, \Countable
{
    /**
     * @return array|null
     */
    public function one(): ?array;

    public function all(): array;

    public function count(): int;

}