for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smalot\Bitbucket\Webhook\Model;
/**
* Class IssueCreatedModel
* @package Smalot\Bitbucket\Webhook\Model
*
* A user created an issue for a repository.
*/
class IssueCreatedModel 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'];