Skip to content

Commit ac3e69f

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents 6c39f95 + f998fe8 commit ac3e69f

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

src/Fields/Converters/BaseConverter.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ abstract class BaseConverter
3232
protected static $configurations = [];
3333

3434
/**
35-
* @param \SolutionForest\FilamentFieldGroup\FieldTypes\Configs\Contracts\FieldTypeConfig $fieldTypeConfig
36-
* @param ?string $group
37-
* @param ?string $key
35+
* @param ?string $group
36+
* @param ?string $key
3837
*/
3938
public function __construct(FieldTypeConfig $fieldTypeConfig, $group, $key)
4039
{

src/Fields/Converters/RepeaterConverter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ private function tryGetConverterForInnerField($fieldTypeConfig, $group, $key): ?
116116
try {
117117

118118
$transformer = app(PropertyValueTransformerInterface::class);
119-
120119

121120
return $transformer->getConverter($fieldTypeConfig, $key, $group);
122121

src/Fields/PropertyValueTransformerInterface.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ public function attemptTransform(PropertyDataDto $propertyDataDto, ?string $loca
1616
* Get the converter for the specified field type.
1717
*
1818
* @param ?FieldTypeConfig $fieldType The type of the field for which the converter is needed.
19-
* @param ?string $key The key of the field.
20-
* @param ?string $group The group of the field.
21-
*
19+
* @param ?string $key The key of the field.
20+
* @param ?string $group The group of the field.
2221
* @return BaseConverter The converter for the specified field type.
2322
*
2423
* @throws \InvalidArgumentException If no field type is specified, or if no converter is found for the specified field type.

0 commit comments

Comments
 (0)