aboutsummaryrefslogtreecommitdiffstats
path: root/oni-php/snippets/php-mode
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-02-09 12:11:22 -0800
committerGravatar Tom Willemse2026-02-09 12:11:22 -0800
commit2d5c6397cec2af2322678a7cfa12bde3e7030529 (patch)
treed222c0634fa1e0d3e8fb0e5a622f5740a469be60 /oni-php/snippets/php-mode
parent4507f247da15230c8aa653dad8d0349523a29fee (diff)
downloademacs-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')
-rw-r--r--oni-php/snippets/php-mode/test-class3
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