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 67ca2b1 commit a1f8bbdCopy full SHA for a1f8bbd
tests/LimitTest.php
@@ -43,6 +43,9 @@ class ProductWithDefaultConnectionLimit extends Product
43
$products = ProductWithDefaultConnectionLimit::all();
44
expect($products)->toHaveCount(4);
45
46
+ $products = ProductWithDefaultConnectionLimit::limit(3)->get();
47
+ expect($products)->toHaveCount(3);
48
+
49
$products = ProductWithLimit::limit(3)->get();
50
expect($products)->toHaveCount(3);
51
});
0 commit comments