for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/vuongxuongminh/yii2-gateway-clients
* @copyright Copyright (c) 2018 Vuong Xuong Minh
* @license [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
*/
namespace vxm\examples\gatewayclients;
use vxm\gatewayclients\ResponseData as BaseResponseData;
* Class ResponseData
*
* @property bool $success
* @author Vuong Minh <[email protected]>
* @since 1.0
class ResponseData extends BaseResponseData
{
public function getIsOk(): bool
return $this->success === true;
}