Commit inicial
This commit is contained in:
12
include/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php
vendored
Normal file
12
include/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
interface ExceptionInterface extends Throwable
|
||||
{
|
||||
//
|
||||
}
|
||||
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php
vendored
Normal file
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
final class InvalidEncodingException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php
vendored
Normal file
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
final class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php
vendored
Normal file
12
include/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
final class InvalidPathException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
12
include/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php
vendored
Normal file
12
include/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
final class ValidationException extends RuntimeException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user