for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP version 5.4 and 8
*
* @category ResponseEntity
* @package Payever\Plugins
* @author payever GmbH <[email protected]>
* @author Hennadii.Shymanskyi <[email protected]>
* @copyright 2017-2021 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
* @link https://docs.payever.org/shopsystems/api/getting-started
*/
namespace Payever\ExternalIntegration\Plugins\Http\ResponseEntity;
use Payever\ExternalIntegration\Core\Http\ResponseEntity;
* @method string getFilename()
* @method string getVersion()
* @method \DateTime getCreatedAt()
* @method string getMinCmsVersion()
* @method string getMaxCmsVersion()
* @SuppressWarnings(PHPMD.MissingImport)
class PluginVersionResponseEntity extends ResponseEntity
{
/** @var string */
protected $filename;
protected $version;
/** @var \DateTime */
protected $createdAt;
protected $minCmsVersion;
protected $maxCmsVersion;
* @param string $createdAt
* @throws \Exception
* @return $this
public function setCreatedAt($createdAt)
$this->createdAt = new \DateTime($createdAt);
return $this;
}