for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* NOTICE OF LICENSE
* This source file is subject to the GNU General Public License (GPL 3)
* that is bundled with this package in the file LICENSE.txt
* DISCLAIMER
* Do not edit or add to this file if you wish to upgrade Payone_Core to newer
* versions in the future. If you wish to customize Payone_Core for your
* needs please refer to http://www.payone.de for more information.
* @category Payone
* @package Payone_Core_Block
* @subpackage Mastercard_Masterpass
* @copyright Copyright (c) 2018 <[email protected]> - www.fatchip.de
* @author FATCHIP GmbH <[email protected]>
* @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
* @link http://www.fatchip.de
*/
class Payone_Api_Request_MasterpassGetCheckout
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
extends Payone_Api_Request_Genericpayment
{
/** @var string */
protected $wallettype = null;
* @param array $data
public function __construct(array $data = array())
$this->request = Payone_Api_Enum_RequestType::GENERICPAYMENT;
parent::__construct($data);
}
* @return string
public function getWallettype()
return $this->wallettype;
* @param string $wallettype
public function setWallettype($wallettype)
$this->wallettype = $wallettype;
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.