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\ThirdParty
* @author Hennadii.Shymanskyi <[email protected]>
* @copyright 2017-2019 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
*/
namespace Payever\ExternalIntegration\ThirdParty\Http\MessageEntity;
use Payever\ExternalIntegration\Core\Base\MessageEntity;
* @author payever GmbH <[email protected]>
* @method string getName()
* @method string getUrl()
* @method string getMethod()
* @method self setName(string $name)
* @method self setUrl(string $url)
* @method self setMethod(string $httpMethod)
class SubscriptionActionEntity extends MessageEntity
{
const UNDERSCORE_ON_SERIALIZATION = false;
/** @var string */
protected $name;
protected $url;
protected $method;
* @return array
public function getRequired()
return array(
'name',
'url',
'method',
);
}