Files
farmOS-dev/vendor/chi-teck/drupal-code-generator/src/Command/LabelInterface.php
2024-12-10 15:08:16 +01:00

18 lines
273 B
PHP

<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Command;
/**
* Interface for generators that provide human-readable label.
*/
interface LabelInterface {
/**
* Returns the human-readable command label.
*/
public function getLabel(): ?string;
}