for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* You can find more information about us on https://bitbag.io and write us
* an email on [email protected].
*/
declare(strict_types=1);
namespace BitBag\SyliusMolliePlugin\Entity;
use Sylius\Component\Resource\Model\ResourceInterface;
class MollieCustomer implements ResourceInterface, MollieCustomerInterface
{
/** @var int */
protected $id;
/** @var string */
protected $profileId;
protected $email;
public function getId(): int
return $this->id;
}
public function getProfileId(): ?string
return $this->profileId;
public function setProfileId(string $profileId): void
$this->profileId = $profileId;
public function getEmail(): string
return $this->email;
public function setEmail(string $email): void
$this->email = $email;