f3a50eae39cda0db360be5eb45b7b0a877c5609d
[yaffs-website] / vendor / consolidation / annotated-command / src / CommandCreationListenerInterface.php
1 <?php
2 namespace Consolidation\AnnotatedCommand;
3
4 /**
5  * Command cration listeners can be added to the annotation
6  * command factory.  These will be notified whenever a new
7  * commandfile is provided to the factory.  This is useful for
8  * initializing new commandfile objects.
9  *
10  * @see AnnotatedCommandFactory::addListener()
11  */
12 interface CommandCreationListenerInterface
13 {
14     public function notifyCommandFileAdded($command);
15 }