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;
class MollieLogger implements MollieLoggerInterface
{
/** @var int */
protected $id;
protected $level;
protected $errorCode;
/** @var string */
protected $message;
/** @var \DateTime */
protected $dateTime;
public function getId(): int
return $this->id;
}
public function getLevel(): int
return $this->level;
public function setLevel(int $level): void
$this->level = $level;
public function getErrorCode(): int
return $this->errorCode;
public function setErrorCode(int $errorCode): void
$this->errorCode = $errorCode;
public function getMessage(): string
return $this->message;
public function setMessage(string $message): void
$this->message = $message;
public function getDateTime(): \DateTime
return $this->dateTime;
public function setDateTime(\DateTime $dateTime): void
$this->dateTime = $dateTime;