arguments = new CursorArguments(); } /** * @return void */ public function testCreatesArgumentsWithCountModifier(): void { $this->arguments->count(2); $this->assertSame(['COUNT', 2], $this->arguments->toArray()); } }