Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class IntegrationMappingException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class IntegrationNotFoundException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class IntegrationNotSetException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class InvalidCredentialsException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class InvalidFormOptionException extends \Exception
{
}

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class InvalidProviderException extends \Exception
{
public function __construct($provider, $code = 0, ?\Throwable $previous = null)
{
parent::__construct(sprintf('The requested auth provider (%s) has not been registered.', $provider), $code, $previous);
}
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class InvalidValueException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class PathNotFoundException extends \Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class PluginNotConfiguredException extends \Exception
{
protected $message = 'mautic.integration.not_configured';
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class RequiredValueException extends InvalidValueException
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class UnauthorizedException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Exception;
class UnexpectedValueException extends \Exception
{
}