This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App; | |
| use Illuminate\Support\Str; | |
| class ConfigRepo extends \Illuminate\Config\Repository | |
| { | |
| public function __call($method, array $parameters) | |
| { | |
| $verb = Str::lcfirst($method); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Illuminate\Http\JsonResponse; | |
| use Throwable; | |
| class Handler extends ExceptionHandler | |
| { | |
| /** | |
| * A list of the exception types that are not reported. | |
| * |
OlderNewer