for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fatindeed\GitlabWebhookHandler;
use TimoReymann\GitlabWebhookLibrary\Specification\Event;
use TimoReymann\GitlabWebhookLibrary\Event\PushEvent;
class DemoPushHook extends EventObserver
{
/**
* @var string
*/
protected $eventTypes = [PushEvent::class];
* Process push event
*
* @param \TimoReymann\GitlabWebhookLibrary\Specification\Event $event
* @return void
public function process(Event $event): void
echo $event->getObjectKind();
}