2
0

TableMetadataInterface.php 248 B

12345678910
  1. <?php
  2. namespace PhpDevCommunity\PaperORM\Entity;
  3. interface TableMetadataInterface
  4. {
  5. static public function getTableName(): string;
  6. static public function getRepositoryName(): ?string;
  7. static public function columnsMapping(): array;
  8. }