dependencies-upgrade

This commit is contained in:
RafficMohammed
2023-01-08 02:20:59 +05:30
parent 7870479b18
commit 49021a4497
1711 changed files with 74994 additions and 70803 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

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

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
{
//
}