for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smalot\Github\Webhook\Model;
/**
* Class DeleteModel
* @package Smalot\Github\Webhook\Model
*
* Represents a deleted branch or tag.
*/
class DeleteModel extends ModelBase
{
* @return string
public function getRefType()
return $this->payload['ref_type'];
}
public function getRef()
return $this->payload['ref'];