Skip to content

Commit df37b0a

Browse files
committed
style: align Importable @Property tags and match arms for StyleCI
1 parent dc7167b commit df37b0a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/Importable.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
/**
1313
* Trait Importable.
1414
*
15-
* @property int $start_row
16-
* @property ?int $end_row
17-
* @property ?int $end_column
15+
* @property int $start_row
16+
* @property ?int $end_row
17+
* @property ?int $end_column
1818
* @property int[]|null $only_columns
19-
* @property bool $transpose
20-
* @property bool $with_header
19+
* @property bool $transpose
20+
* @property bool $with_header
2121
*/
2222
trait Importable
2323
{
@@ -358,7 +358,7 @@ private function rowValues(Row $rowAsObject): array
358358

359359
return match (true) {
360360
$cell instanceof Cell\FormulaCell => $cell->getComputedValue(),
361-
default => $cell->getValue(),
361+
default => $cell->getValue(),
362362
};
363363
}, $this->only_columns);
364364
}
@@ -370,7 +370,7 @@ private function rowValues(Row $rowAsObject): array
370370
return array_map(function (Cell $cell) {
371371
return match (true) {
372372
$cell instanceof Cell\FormulaCell => $cell->getComputedValue(),
373-
default => $cell->getValue(),
373+
default => $cell->getValue(),
374374
};
375375
}, $cells);
376376
}

0 commit comments

Comments
 (0)