for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smalot\Bitbucket\Webhook\Model;
/**
* Class IssueUpdatedModel
* @package Smalot\Bitbucket\Webhook\Model
*
* A user updated an issue for a repository.
*/
class IssueUpdatedModel extends ModelBase
{
* @return array
public function getActor()
return $this->payload['actor'];
}
public function getIssue()
return $this->payload['issue'];
public function getRepository()
return $this->payload['repository'];
public function getComment()
return $this->payload['comment'];
public function getChanges()
return $this->payload['changes'];