assertEquals( $expression->__toString(), $query ); } public function somethingProvider(): array { return [ 'from bucket' => [ [ 'bucket' => 'test-bucket', ], 'from(bucket: "test-bucket") ' ], 'from bucket and host' => [ [ 'bucket' => 'test-bucket', 'host' => 'test', ], 'from(bucket: "test-bucket", host: "test") ' ], ]; } }