X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fpharext%2FCommand.php;h=0d30b552eadf2416a02d804ea62926f7d704ce0f;hb=2f28b0c7fa1729499d03a254eb9c5e0dd85ef9fd;hp=61b8810adcffd5bb2c65dd116a493743d7e81538;hpb=861260c111bff72f60665393660b6f5375559510;p=pharext%2Fpharext diff --git a/src/pharext/Command.php b/src/pharext/Command.php index 61b8810..0d30b55 100644 --- a/src/pharext/Command.php +++ b/src/pharext/Command.php @@ -7,9 +7,30 @@ namespace pharext; */ interface Command { + /** + * Argument error + */ + const EARGS = 1; + /** + * Build error + */ + const EBUILD = 2; + /** + * Signature error + */ + const ESIGN = 3; + /** + * Extract/unpack error + */ + const EEXTRACT = 4; + /** + * Install error + */ + const EINSTALL = 5; + /** * Retrieve command line arguments - * @return pharext\CliArgs + * @return pharext\Cli\Args */ public function getArgs();