for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smalot\Github\Webhook\Event;
use Smalot\Github\Webhook\Model\PageBuildModel;
/**
* Class PageBuildEvent
* @package Smalot\Github\Webhook\Event
*
* Represents an attempted build of a GitHub Pages site, whether successful or not.
* Triggered on push to a GitHub Pages enabled branch (gh-pages for project pages, master for user and organization pages).
* Events of this type are not visible in timelines, they are only used to trigger hooks.
*/
class PageBuildEvent extends EventBase
{
* @return string
protected function getClassModel()
return '\Smalot\Github\Webhook\Model\PageBuildModel';
}
* @return PageBuildModel
public function getData()
return $this->model;