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 Pest\Concerns\Expectable; | |
| use Pest\PendingCalls\BeforeEachCall; | |
| use Pest\PendingCalls\TestCall; | |
| use Pest\Support\HigherOrderTapProxy; | |
| use Tests\TestCase; | |
| /** | |
| * Runs the given closure before all tests in the current file. |
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
| "github.copilot.chat.commitMessageGeneration.instructions": [ | |
| { | |
| "text": "Follow the Conventional Commits format strictly for commit messages. Use lowercase only, except for special words. Keep it concise. \n\n Examples:\n- feat: add new feature\n- fix: resolve issue with login\n- docs: update documentation\n- style: improve formatting\n- refactor: optimize code structure\n- test: add unit tests for new feature\n- chore: update deps", | |
| } | |
| ], |
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\Broadcasting\FakePendingBroadcast; | |
| use Illuminate\Container\Container; | |
| use Illuminate\Contracts\Auth\Access\Gate; | |
| use Illuminate\Contracts\Auth\Factory as AuthFactory; | |
| use Illuminate\Contracts\Broadcasting\Factory as BroadcastFactory; | |
| use Illuminate\Contracts\Bus\Dispatcher; | |
| use Illuminate\Contracts\Cookie\Factory as CookieFactory; | |
| use Illuminate\Contracts\Debug\ExceptionHandler; |