This file contains 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
parameters: | |
paths: | |
- app/ | |
level: 9 | |
ignoreErrors: | |
- identifier: missingType.generics | |
checkImplicitMixed: true |
This file contains 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 | |
declare(strict_types=1); | |
namespace App\Enums; | |
enum State: string | |
{ | |
case ALABAMA = 'AL'; | |
case ALASKA = 'AK'; |
This file contains 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 | |
declare(strict_types=1); | |
namespace App\Exceptions\Rendering; | |
use Illuminate\Contracts\Support\Responsable; | |
use Illuminate\Http\Request; | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
use Throwable; |
This file contains 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 | |
declare(strict_types=1); | |
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector; | |
use Rector\Config\RectorConfig; | |
use Rector\Set\ValueObject\LevelSetList; | |
use Rector\Set\ValueObject\SetList; | |
return static function (RectorConfig $rectorConfig): void { |
This file contains 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
{ | |
description = "JustSteveKing Nix MacOS Setup"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
nix-darwin.url = "github:LnL7/nix-darwin"; | |
nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; | |
nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew"; | |
}; |
OlderNewer