10 lines
233 B
PHP
10 lines
233 B
PHP
![]() |
<?php
|
||
|
namespace Consolidation\AnnotatedCommand;
|
||
|
|
||
|
use Consolidation\AnnotatedCommand\Parser\CommandInfo;
|
||
|
|
||
|
interface CommandInfoAltererInterface
|
||
|
{
|
||
|
public function alterCommandInfo(CommandInfo $commandInfo, $commandFileInstance);
|
||
|
}
|