Skip to content

Commit df093b1

Browse files
committed
fix: broken windows tests
1 parent 27849a1 commit df093b1

File tree

4 files changed

+2865
-1672
lines changed

4 files changed

+2865
-1672
lines changed

src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/DSL/functions.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,19 @@
99
Adapter\Excel\ExcelLoader,
1010
Adapter\Excel\Function\IsValidExcelSheetName,
1111
Attribute\DocumentationDSL,
12-
Attribute\DocumentationExample,
1312
Attribute\Module,
1413
Attribute\Type as DSLType,
1514
Function\ScalarFunction};
1615
use Flow\Filesystem\Path;
1716

1817
#[DocumentationDSL(module: Module::EXCEL, type: DSLType::EXTRACTOR)]
19-
#[DocumentationExample(topic: 'data_frame', example: 'data_reading', option: 'excel')]
2018
function from_excel(
2119
string|Path $path,
2220
) : ExcelExtractor {
2321
return new ExcelExtractor(\is_string($path) ? path_real($path) : $path);
2422
}
2523

2624
#[DocumentationDSL(module: Module::EXCEL, type: DSLType::LOADER)]
27-
#[DocumentationExample(topic: 'data_frame', example: 'data_writing', option: 'excel')]
2825
function to_excel(string|Path $path) : ExcelLoader
2926
{
3027
return new ExcelLoader(\is_string($path) ? path_real($path) : $path);

0 commit comments

Comments
 (0)