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 0cef5dc commit be1d10dCopy full SHA for be1d10d
src/Query/Builder.php
@@ -267,12 +267,14 @@ public function dd()
267
/**
268
* Dump the current MongoDB query
269
*
270
+ * @param mixed ...$args
271
+ *
272
* @return $this
273
*/
274
#[Override]
- public function dump()
275
+ public function dump(mixed ...$args)
276
{
- dump($this->toMql());
277
+ dump($this->toMql(), ...$args);
278
279
return $this;
280
}
0 commit comments