for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AlexCk\MailchimpBundle\Model\MailChimp;
class MailChimpWebHooksEvent
{
/**
* @var bool
*/
private $subscribe;
private $unsubscribe;
private $profile;
public function isSubscribe(): bool
return $this->subscribe;
}
public function setSubscribe(bool $subscribe): MailChimpWebHooksEvent
$this->subscribe = $subscribe;
return $this;
public function isUnsubscribe(): bool
return $this->unsubscribe;
public function setUnsubscribe(bool $unsubscribe): MailChimpWebHooksEvent
$this->unsubscribe = $unsubscribe;
public function isProfile(): bool
return $this->profile;
public function setProfile(bool $profile): MailChimpWebHooksEvent
$this->profile = $profile;