first commit
This commit is contained in:
19
plugins/stEservice2Plugin/vendor/eservice-sdk/lib/Response/Info.php
vendored
Normal file
19
plugins/stEservice2Plugin/vendor/eservice-sdk/lib/Response/Info.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Eservice;
|
||||
|
||||
class ResponseInfo extends Response
|
||||
{
|
||||
|
||||
public function __construct($info = [])
|
||||
{
|
||||
$this->_params = array_keys($info);
|
||||
$this->_data = $info;
|
||||
}
|
||||
|
||||
public function __debugInfo()
|
||||
{
|
||||
return $this->_data;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user