DataSetInterface.php 307 B

123456789101112131415161718
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces;
  3. /*
  4. * Interface for set of data returned by datatable
  5. */
  6. interface DataSetInterface
  7. {
  8. public function getOffset();
  9. public function getRecords();
  10. public function getLenght();
  11. public function getFullLenght();
  12. }