Skip to content

Commit 7ae15d5

Browse files
committed
fix code style
1 parent ddbb7e1 commit 7ae15d5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/Reflection/CacheReflectionProperty.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function notTransform(): bool
5252
{
5353
return $this->notTransform;
5454
}
55-
55+
5656
/**
5757
* @return bool
5858
*/

src/Reflection/Types/ArrayType.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ class ArrayType extends PropertyType
1414
/** @var string|class-string */
1515
public string $itemsType;
1616
public bool $isScalarItems;
17-
1817
}

src/Reflection/Types/PropertyTypeFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static function create(RuntimeReflectionProperty $property)
5858
$arrayType = TransformUtils::getClassFromPhpDoc($property->getDocComment());
5959
}
6060
$arrayType ??= TypeEnums::TYPE_MIXED;
61-
61+
6262
$typeInstance = new ArrayType(
6363
$type,
6464
$isScalar,

0 commit comments

Comments
 (0)