diff options
| author | 2026-02-09 12:11:22 -0800 | |
|---|---|---|
| committer | 2026-02-09 12:11:22 -0800 | |
| commit | 2d5c6397cec2af2322678a7cfa12bde3e7030529 (patch) | |
| tree | d222c0634fa1e0d3e8fb0e5a622f5740a469be60 /oni-php/snippets/php-mode/test-class | |
| parent | 4507f247da15230c8aa653dad8d0349523a29fee (diff) | |
| download | emacs-config-2d5c6397cec2af2322678a7cfa12bde3e7030529.tar.gz emacs-config-2d5c6397cec2af2322678a7cfa12bde3e7030529.zip | |
oni-php/snippets/test-class: Remove WithFaker
We can use ‘$this->faker()’ instead.
Diffstat (limited to 'oni-php/snippets/php-mode/test-class')
| -rw-r--r-- | oni-php/snippets/php-mode/test-class | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oni-php/snippets/php-mode/test-class b/oni-php/snippets/php-mode/test-class index c758fb4..de3bd3f 100644 --- a/oni-php/snippets/php-mode/test-class +++ b/oni-php/snippets/php-mode/test-class @@ -4,12 +4,11 @@ # -- use Illuminate\Foundation\Testing\RefreshDatabase; -use Illuminate\Foundation\Testing\WithFaker; use Tests\TestCase; class ${1:`(file-name-sans-extension (file-name-nondirectory (buffer-file-name)))`} extends TestCase { - use RefreshDatabase, WithFaker; + use RefreshDatabase; $0 }
\ No newline at end of file |
