AthensFramework/core

View on GitHub
src/table/TableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Athens\Core\Table;

use Athens\Core\Row\RowInterface;
use Athens\Core\Filter\FilterInterface;
use Athens\Core\Writable\WritableInterface;

interface TableInterface extends WritableInterface
{

    /**
     * @return RowInterface[]
     */
    public function getRows();

    /**
     * @return FilterInterface
     */
    public function getFilter();
}