Pressroom template verwijderd, website naar root van repo
This commit is contained in:
11
vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php
vendored
Normal file
11
vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
/**
|
||||
* This is the exception interface.
|
||||
*/
|
||||
interface ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
13
vendor/vlucas/phpdotenv/src/Exception/InvalidCallbackException.php
vendored
Normal file
13
vendor/vlucas/phpdotenv/src/Exception/InvalidCallbackException.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
/**
|
||||
* This is the invalid callback exception class.
|
||||
*/
|
||||
class InvalidCallbackException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
13
vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php
vendored
Normal file
13
vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
/**
|
||||
* This is the invalid file exception class.
|
||||
*/
|
||||
class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
13
vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php
vendored
Normal file
13
vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
/**
|
||||
* This is the invalid path exception class.
|
||||
*/
|
||||
class InvalidPathException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
13
vendor/vlucas/phpdotenv/src/Exception/ValidationException.php
vendored
Normal file
13
vendor/vlucas/phpdotenv/src/Exception/ValidationException.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Dotenv\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
/**
|
||||
* This is the validation exception class.
|
||||
*/
|
||||
class ValidationException extends RuntimeException implements ExceptionInterface
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user