ModelInterface.php 293 B

1234567891011121314151617
  1. <?php
  2. namespace Transmission\Model;
  3. /**
  4. * The interface Transmission models must implement
  5. *
  6. * @author Ramon Kleiss <ramon@cubilon.nl>
  7. */
  8. interface ModelInterface
  9. {
  10. /**
  11. * Get the mapping of the model
  12. *
  13. * @return array
  14. */
  15. public static function getMapping();
  16. }