for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\PayumBundle\Model;
use Payum\Core\Model\GatewayConfig as BaseGatewayConfig;
use Sylius\Component\Resource\Model\ResourceInterface;
class GatewayConfig extends BaseGatewayConfig implements ResourceInterface
{
/**
* @var int
protected $id;
* @return int
public function getId()
return $this->id;
}