Initial commit - Mini CMS complet (PHP + Docker + MinIO)

This commit is contained in:
Aya Tess tess
2025-11-01 16:42:38 +01:00
commit 9a57013505
3035 changed files with 131442 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\TaxSettings\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **Tax Settings** service.
*/
class TaxSettingsException extends AwsException {}

View File

@@ -0,0 +1,41 @@
<?php
namespace Aws\TaxSettings;
use Aws\AwsClient;
/**
* This client is used to interact with the **Tax Settings** service.
* @method \Aws\Result batchDeleteTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchDeleteTaxRegistrationAsync(array $args = [])
* @method \Aws\Result batchGetTaxExemptions(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchGetTaxExemptionsAsync(array $args = [])
* @method \Aws\Result batchPutTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchPutTaxRegistrationAsync(array $args = [])
* @method \Aws\Result deleteSupplementalTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSupplementalTaxRegistrationAsync(array $args = [])
* @method \Aws\Result deleteTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteTaxRegistrationAsync(array $args = [])
* @method \Aws\Result getTaxExemptionTypes(array $args = [])
* @method \GuzzleHttp\Promise\Promise getTaxExemptionTypesAsync(array $args = [])
* @method \Aws\Result getTaxInheritance(array $args = [])
* @method \GuzzleHttp\Promise\Promise getTaxInheritanceAsync(array $args = [])
* @method \Aws\Result getTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise getTaxRegistrationAsync(array $args = [])
* @method \Aws\Result getTaxRegistrationDocument(array $args = [])
* @method \GuzzleHttp\Promise\Promise getTaxRegistrationDocumentAsync(array $args = [])
* @method \Aws\Result listSupplementalTaxRegistrations(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSupplementalTaxRegistrationsAsync(array $args = [])
* @method \Aws\Result listTaxExemptions(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTaxExemptionsAsync(array $args = [])
* @method \Aws\Result listTaxRegistrations(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTaxRegistrationsAsync(array $args = [])
* @method \Aws\Result putSupplementalTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise putSupplementalTaxRegistrationAsync(array $args = [])
* @method \Aws\Result putTaxExemption(array $args = [])
* @method \GuzzleHttp\Promise\Promise putTaxExemptionAsync(array $args = [])
* @method \Aws\Result putTaxInheritance(array $args = [])
* @method \GuzzleHttp\Promise\Promise putTaxInheritanceAsync(array $args = [])
* @method \Aws\Result putTaxRegistration(array $args = [])
* @method \GuzzleHttp\Promise\Promise putTaxRegistrationAsync(array $args = [])
*/
class TaxSettingsClient extends AwsClient {}