for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP version 5.4 and 7
*
* @package Payever\Plugins
* @author Hennadii.Shymanskyi <[email protected]>
* @copyright 2017-2019 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
*/
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()
* @author payever GmbH <[email protected]>
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;
}