farm-2.x-dev/modules/log/lab_test/src/Entity/FarmLabTestTypeInterface.php
modules/log/lab_test/src/Entity/FarmLabTestTypeInterface.php
<?php
namespace Drupal\farm_lab_test\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining FarmLabTestType config entities.
*
* @ingroup farm
*/
interface FarmLabTestTypeInterface extends ConfigEntityInterface {
/**
* Returns the lab test type label.
*
* @return string
* The lab test type label.
*/
public function getLabel();
}
