for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smalot\Github\Webhook\Model;
/**
* Class ForkApplyModel
* @package Smalot\Github\Webhook\Model
*
* Triggered when a patch is applied in the Fork Queue.
* Events of this type are no longer created, but it's possible that they exist in timelines of some users.
*/
class ForkApplyModel extends ModelBase
{
* @return string
public function getHead()
return $this->payload['head'];
}
public function getBefore()
return $this->payload['before'];
public function getAfter()
return $this->payload['after'];