We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ecdb30 commit 9fc59a9Copy full SHA for 9fc59a9
tests/HasTagsScopesTest.php
@@ -51,15 +51,15 @@
51
expect($testModels->pluck('name')
52
->toArray())
53
->toContain('model5', 'model6')
54
- ->not->toContain('model3', 'model7');
+ ->not->toContain('model3', 'model7');
55
56
// Array input
57
$testModels = TestModel::withAnyTagsOfType(['typedTag', 'secondType'])->get();
58
59
60
61
->toContain('model5', 'model6', 'model7')
62
- ->not->toContain('model3');
+ ->not->toContain('model3');
63
});
64
65
it('provides a scope to get all models that have any of the given tags', function () {
0 commit comments