protected function adjustObjectForPolicyChecks(PhabricatorLiskDAO $object, array $xactions)
 {
     $copy = parent::adjustObjectForPolicyChecks($object, $xactions);
     foreach ($xactions as $xaction) {
         switch ($xaction->getTransactionType()) {
             case PhabricatorCalendarEventHostTransaction::TRANSACTIONTYPE:
                 $copy->setHostPHID($xaction->getNewValue());
                 break;
             case PhabricatorCalendarEventInviteTransaction::TRANSACTIONTYPE:
                 PhabricatorPolicyRule::passTransactionHintToRule($copy, new PhabricatorCalendarEventInviteesPolicyRule(), array_fuse($xaction->getNewValue()));
                 break;
         }
     }
     return $copy;
 }
 protected function adjustObjectForPolicyChecks(PhabricatorLiskDAO $object, array $xactions)
 {
     $copy = parent::adjustObjectForPolicyChecks($object, $xactions);
     $type_edge = PhabricatorTransactions::TYPE_EDGE;
     $edgetype_member = PhabricatorProjectProjectHasMemberEdgeType::EDGECONST;
     $member_xaction = null;
     foreach ($xactions as $xaction) {
         if ($xaction->getTransactionType() !== $type_edge) {
             continue;
         }
         $edgetype = $xaction->getMetadataValue('edge:type');
         if ($edgetype !== $edgetype_member) {
             continue;
         }
         $member_xaction = $xaction;
     }
     if ($member_xaction) {
         $object_phid = $object->getPHID();
         if ($object_phid) {
             $project = id(new PhabricatorProjectQuery())->setViewer($this->getActor())->withPHIDs(array($object_phid))->needMembers(true)->executeOne();
             $members = $project->getMemberPHIDs();
         } else {
             $members = array();
         }
         $clone_xaction = clone $member_xaction;
         $hint = $this->getPHIDTransactionNewValue($clone_xaction, $members);
         $rule = new PhabricatorProjectMembersPolicyRule();
         $hint = array_fuse($hint);
         PhabricatorPolicyRule::passTransactionHintToRule($copy, $rule, $hint);
     }
     return $copy;
 }
 protected function adjustObjectForPolicyChecks(PhabricatorLiskDAO $object, array $xactions)
 {
     $copy = clone $object;
     foreach ($xactions as $xaction) {
         switch ($xaction->getTransactionType()) {
             case PhabricatorTransactions::TYPE_SUBSCRIBERS:
                 $clone_xaction = clone $xaction;
                 $clone_xaction->setOldValue(array_values($this->subscribers));
                 $clone_xaction->setNewValue($this->getPHIDTransactionNewValue($clone_xaction));
                 PhabricatorPolicyRule::passTransactionHintToRule($copy, new PhabricatorSubscriptionsSubscribersPolicyRule(), array_fuse($clone_xaction->getNewValue()));
                 break;
             case PhabricatorTransactions::TYPE_SPACE:
                 $space_phid = $this->getTransactionNewValue($object, $xaction);
                 $copy->setSpacePHID($space_phid);
                 break;
         }
     }
     return $copy;
 }