allow vendord
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
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
This commit is contained in:
65
vendor/mollie/mollie-api-php/src/Endpoints/PermissionEndpoint.php
vendored
Normal file
65
vendor/mollie/mollie-api-php/src/Endpoints/PermissionEndpoint.php
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user