TripalBlastDatabaseInterface.php 374 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * Contains class definition of Tripal BLAST Database Interface.
  5. */
  6. namespace Drupal\tripal_blast;
  7. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  8. /**
  9. * Provides an interface defining the BLAST database entity.
  10. */
  11. interface TripalBlastDatabaseInterface extends ConfigEntityInterface {
  12. public function getNid();
  13. public function getName();
  14. }