final move of files
[web.mtrack] / MTrack / Interface / CommitListener.php
1 <?php 
2 /* The listener protocol is to return true if all is good,
3  * or to return either a string or an array of strings that
4  * detail why a change is not allowed to proceed */
5 interface IMTrackCommitListener
6 {
7   function vetoCommit($msg, $files, $actions, $checker);
8   function postCommit($msg, $files, $actions);
9 }