GeoSot/Laravel-EnvEditor

View on GitHub
src/Exceptions/EnvException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace GeoSot\EnvEditor\Exceptions;

class EnvException extends \Exception
{
    public function __toString(): string
    {
        return self::class.":[{$this->code}]: {$this->message}\n";
    }
}