Skip to content

Commit 01b6133

Browse files
authored
Updated dependencies (#1262)
1 parent 3bbb5d4 commit 01b6133

File tree

14 files changed

+612
-608
lines changed

14 files changed

+612
-608
lines changed

composer.lock

Lines changed: 170 additions & 165 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/etl/src/Flow/ETL/DSL/functions.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,12 @@ function filesystem_cache(Path|string|null $cache_dir = null, Filesystem $filesy
223223
return new FilesystemCache($filesystem, $serializer, \is_string($cache_dir) ? Path::realpath($cache_dir) : $cache_dir);
224224
}
225225

226-
/**
227-
* @param int<1, max> $chunk_size
228-
*/
229226
#[DocumentationDSL(module: Module::CORE, type: DSLType::EXTRACTOR)]
230227
function chunks_from(Extractor $extractor, int $chunk_size) : Extractor\ChunkExtractor
231228
{
232229
return new Extractor\ChunkExtractor($extractor, $chunk_size);
233230
}
231+
234232
#[DocumentationDSL(module: Module::CORE, type: DSLType::EXTRACTOR)]
235233
function from_pipeline(Pipeline $pipeline) : Extractor\PipelineExtractor
236234
{

src/core/etl/src/Flow/ETL/Extractor/ChunkExtractor.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
final class ChunkExtractor implements Extractor, OverridingExtractor
1010
{
11-
/**
12-
* @param int<1, max> $chunkSize
13-
*/
1411
public function __construct(
1512
private readonly Extractor $extractor,
1613
private readonly int $chunkSize,

src/lib/parquet/src/Flow/Parquet/Thrift/ColumnMetaData.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class ColumnMetaData
170170
* This information can be used to determine if all data pages are
171171
* dictionary encoded for example *.
172172
*
173-
* @var \Flow\Parquet\Thrift\PageEncodingStats[]
173+
* @var PageEncodingStats[]
174174
*/
175175
public $encoding_stats;
176176

@@ -192,7 +192,7 @@ class ColumnMetaData
192192
/**
193193
* Optional key/value metadata *.
194194
*
195-
* @var \Flow\Parquet\Thrift\KeyValue[]
195+
* @var KeyValue[]
196196
*/
197197
public $key_value_metadata;
198198

src/lib/parquet/src/Flow/Parquet/Thrift/FileMetaData.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class FileMetaData
105105
* The obsolete min and max fields in the Statistics object are always sorted
106106
* by signed comparison regardless of column_orders.
107107
*
108-
* @var \Flow\Parquet\Thrift\ColumnOrder[]
108+
* @var ColumnOrder[]
109109
*/
110110
public $column_orders;
111111

@@ -138,7 +138,7 @@ class FileMetaData
138138
/**
139139
* Optional key/value metadata *.
140140
*
141-
* @var \Flow\Parquet\Thrift\KeyValue[]
141+
* @var KeyValue[]
142142
*/
143143
public $key_value_metadata;
144144

@@ -152,7 +152,7 @@ class FileMetaData
152152
/**
153153
* Row groups in this file *.
154154
*
155-
* @var \Flow\Parquet\Thrift\RowGroup[]
155+
* @var RowGroup[]
156156
*/
157157
public $row_groups;
158158

@@ -164,7 +164,7 @@ class FileMetaData
164164
* used to map columns to nodes in the schema.
165165
* The first element is the root *.
166166
*
167-
* @var \Flow\Parquet\Thrift\SchemaElement[]
167+
* @var SchemaElement[]
168168
*/
169169
public $schema;
170170

src/lib/parquet/src/Flow/Parquet/Thrift/OffsetIndex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class OffsetIndex
5050
* PageLocations, ordered by increasing PageLocation.offset. It is required
5151
* that page_locations[i].first_row_index < page_locations[i+1].first_row_index.
5252
*
53-
* @var \Flow\Parquet\Thrift\PageLocation[]
53+
* @var PageLocation[]
5454
*/
5555
public $page_locations;
5656

src/lib/parquet/src/Flow/Parquet/Thrift/RowGroup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class RowGroup
6969
* Metadata for each column chunk in this row group.
7070
* This list must have the same order as the SchemaElement list in FileMetaData.
7171
*
72-
* @var \Flow\Parquet\Thrift\ColumnChunk[]
72+
* @var ColumnChunk[]
7373
*/
7474
public $columns;
7575

@@ -99,7 +99,7 @@ class RowGroup
9999
* If set, specifies a sort ordering of the rows in this RowGroup.
100100
* The sorting columns can be a subset of all the columns.
101101
*
102-
* @var \Flow\Parquet\Thrift\SortingColumn[]
102+
* @var SortingColumn[]
103103
*/
104104
public $sorting_columns;
105105

tools/blackfire/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/box/composer.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)