Files
drupal11-ddev/vendor/chi-teck/drupal-code-generator/src/Command/LabelInterface.php
2025-10-08 11:39:17 -04: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;
}