php8
[web.mtrack] / MTrack / CommitHookChangeEvent.php
1 <?php
2
3
4 class MTrackCommitHookChangeEvent {
5   /** Revision or changeset identifier for this particular item,
6    * in wiki syntax */
7   public $rev;
8
9   /** commit message associated with this revision */
10   public $changelog;
11
12   /** who committed this revision */
13   public $changeby;
14
15   /** when this revision was committed */
16   public $ctime;
17
18   /** a hash value that will be consistent when being merged from multiple
19    * repos */
20   public $hash;
21   
22   public $branch; 
23 }