Skip to content

Commit

Permalink
[Bug] Make ParquetOutput implement missing Output interface (#1446) (#…
Browse files Browse the repository at this point in the history
…1448)

Make ParquetOutput implement missing Output interface (#1446)
  • Loading branch information
radozato authored Feb 5, 2025
1 parent f717dca commit da5e104
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

use function Flow\ETL\Adapter\Parquet\to_parquet;
use function Flow\Filesystem\DSL\path_stdout;
use Flow\Bridge\Symfony\HttpFoundation\Output;
use Flow\ETL\Loader;
use Flow\ETL\Row\Schema;
use Flow\Parquet\Options;
Expand All @@ -15,7 +16,7 @@
throw new \RuntimeException('Flow\ETL\Adapter\Parquet\to_parquet function is not available. Make sure that composer require flow-php/etl-adapter-json dependency is present in your composer.json.');
}

final readonly class ParquetOutput
final readonly class ParquetOutput implements Output
{
public function __construct(
private ?Options $options = null,
Expand Down

0 comments on commit da5e104

Please sign in to comment.