All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Mollie\Api\Endpoints;
|
|
|
|
use Mollie\Api\Exceptions\ApiException;
|
|
use Mollie\Api\Resources\Permission;
|
|
use Mollie\Api\Resources\PermissionCollection;
|
|
|
|
class PermissionEndpoint extends CollectionEndpointAbstract
|
|
{
|
|
protected $resourcePath = "permissions";
|
|
|
|
/**
|
|
* Get the object that is used by this API endpoint. Every API endpoint uses one
|
|
* type of object.
|
|
*
|
|
* @return Permission
|
|
*/
|
|
protected function getResourceObject()
|
|
{
|
|
return new Permission($this->client);
|
|
}
|
|
|
|
/**
|
|
* Get the collection object that is used by this API endpoint. Every API
|
|
* endpoint uses one type of collection object.
|
|
*
|
|
* @param int $count
|
|
* @param \stdClass $_links
|
|
*
|
|
* @return PermissionCollection
|
|
*/
|
|
protected function getResourceCollectionObject($count, $_links)
|
|
{
|
|
return new PermissionCollection($count, $_links);
|
|
}
|
|
|
|
/**
|
|
* Retrieve a single Permission from Mollie.
|
|
*
|
|
* Will throw an ApiException if the permission id is invalid.
|
|
*
|
|
* @param string $permissionId
|
|
* @param array $parameters
|
|
* @return Permission
|
|
* @throws ApiException
|
|
*/
|
|
public function get($permissionId, array $parameters = [])
|
|
{
|
|
return $this->rest_read($permissionId, $parameters);
|
|
}
|
|
|
|
/**
|
|
* Retrieve all permissions.
|
|
*
|
|
* @param array $parameters
|
|
*
|
|
* @return PermissionCollection
|
|
* @throws ApiException
|
|
*/
|
|
public function all(array $parameters = [])
|
|
{
|
|
return parent::rest_list(null, null, $parameters);
|
|
}
|
|
}
|