This commit is contained in:
Paolo A
2024-08-13 13:44:16 +00:00
parent 1bbb23088d
commit e796d76612
4001 changed files with 30101 additions and 40075 deletions

View File

@@ -1,8 +1,12 @@
<?php
declare(strict_types=1);
namespace Dotenv\Exception;
interface ExceptionInterface
use Throwable;
interface ExceptionInterface extends Throwable
{
//
}

View File

@@ -1,10 +1,12 @@
<?php
declare(strict_types=1);
namespace Dotenv\Exception;
use InvalidArgumentException;
class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
final class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
{
//
}

View File

@@ -1,10 +1,12 @@
<?php
declare(strict_types=1);
namespace Dotenv\Exception;
use InvalidArgumentException;
class InvalidPathException extends InvalidArgumentException implements ExceptionInterface
final class InvalidPathException extends InvalidArgumentException implements ExceptionInterface
{
//
}

View File

@@ -1,10 +1,12 @@
<?php
declare(strict_types=1);
namespace Dotenv\Exception;
use RuntimeException;
class ValidationException extends RuntimeException implements ExceptionInterface
final class ValidationException extends RuntimeException implements ExceptionInterface
{
//
}