Skip to content

Commit 3c327ed

Browse files
committed
Apply fixes from StyleCI
1 parent 651b9d0 commit 3c327ed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/ClassConfigFactory.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
use ReflectionMethod;
1313
use ReflectionNamedType;
1414
use ReflectionParameter;
15-
use ReflectionType;
1615
use ReflectionUnionType;
1716
use Yiisoft\Proxy\Config\ClassConfig;
1817
use Yiisoft\Proxy\Config\MethodConfig;
@@ -175,7 +174,7 @@ private function getMethodParameterConfig(ReflectionParameter $param): Parameter
175174
private function getMethodParameterTypeConfig(ReflectionParameter $param): ?TypeConfig
176175
{
177176
/**
178-
* @var ReflectionNamedType|ReflectionUnionType|ReflectionIntersectionType|null
177+
* @var ReflectionIntersectionType|ReflectionNamedType|ReflectionUnionType|null
179178
*/
180179
$type = $param->getType();
181180
if (!$type) {
@@ -202,7 +201,7 @@ private function getMethodReturnTypeConfig(ReflectionMethod $method): ?TypeConfi
202201
$returnType = $method->getTentativeReturnType();
203202
}
204203
/**
205-
* @var ReflectionNamedType|ReflectionUnionType|ReflectionIntersectionType|null $returnType
204+
* @var ReflectionIntersectionType|ReflectionNamedType|ReflectionUnionType|null $returnType
206205
*/
207206

208207
if (!$returnType) {

0 commit comments

Comments
 (0)