24 lines
448 B
PHP
24 lines
448 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\Rackspace\ObjectStoreCdn\v1;
|
||
|
|
||
|
use OpenStack\Common\Api\AbstractApi;
|
||
|
|
||
|
class Api extends AbstractApi
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->params = new Params();
|
||
|
}
|
||
|
|
||
|
public function getAccount(): array
|
||
|
{
|
||
|
return [
|
||
|
'method' => 'GET',
|
||
|
'path' => '',
|
||
|
'params' => [
|
||
|
'format' => $this->params->format()
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
}
|