for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PH\Component\Webhook\Model;
use Sylius\Component\Resource\Model\TimestampableTrait;
use Sylius\Component\Resource\Model\ToggleableTrait;
class Webhook implements WebhookInterface
{
use TimestampableTrait, ToggleableTrait;
/**
* @var mixed
*/
protected $id;
* @var string
protected $url;
* {@inheritdoc}
public function getId()
return $this->id;
}
public function getUrl()
return $this->url;
public function setUrl(string $url)
$this->url = $url;