Files
drupal11-ddev/vendor/consolidation/annotated-command/src/ExitCodeInterface.php
2025-10-08 11:39:17 -04:00

13 lines
288 B
PHP

<?php
namespace Consolidation\AnnotatedCommand;
/**
* If an annotated command method encounters an error, then it
* should either throw an exception, or return a result object
* that implements ExitCodeInterface.
*/
interface ExitCodeInterface
{
public function getExitCode();
}