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