mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 20:40:56 +01:00
Fix missing property on revision adapter.
This commit is contained in:
parent
2a69b91000
commit
c4ecdfa2a5
1 changed files with 1 additions and 3 deletions
|
@ -1,8 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* @group herald
|
|
||||||
*/
|
|
||||||
final class HeraldDifferentialRevisionAdapter extends HeraldAdapter {
|
final class HeraldDifferentialRevisionAdapter extends HeraldAdapter {
|
||||||
|
|
||||||
protected $revision;
|
protected $revision;
|
||||||
|
@ -16,6 +13,7 @@ final class HeraldDifferentialRevisionAdapter extends HeraldAdapter {
|
||||||
protected $remCCs = array();
|
protected $remCCs = array();
|
||||||
protected $emailPHIDs = array();
|
protected $emailPHIDs = array();
|
||||||
protected $addReviewerPHIDs = array();
|
protected $addReviewerPHIDs = array();
|
||||||
|
protected $blockingReviewerPHIDs = array();
|
||||||
|
|
||||||
protected $repository;
|
protected $repository;
|
||||||
protected $affectedPackages;
|
protected $affectedPackages;
|
||||||
|
|
Loading…
Reference in a new issue