diff options
Diffstat (limited to 'src/Exception/RuntimeException.php')
-rw-r--r-- | src/Exception/RuntimeException.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Exception/RuntimeException.php b/src/Exception/RuntimeException.php index 1a9be9c..5728623 100644 --- a/src/Exception/RuntimeException.php +++ b/src/Exception/RuntimeException.php @@ -1,4 +1,6 @@ <?php +declare(strict_types=1); + /** * @author: Alexander Kiryukhin <alexander@kiryukhin.su> * @license: MIT @@ -6,7 +8,10 @@ namespace NeonXP\Dotenv\Exception; - +/** + * Class RuntimeException + * @package NeonXP\Dotenv\Exception + */ class RuntimeException extends \Exception { |