Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 25, 2023
1 parent f6a6b19 commit f3541cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/type/Type.php
Expand Up @@ -54,8 +54,8 @@ public static function fromName(string $typeName, bool $allowsNull): self
'unknown type' => new UnknownType,
'void' => new VoidType,
'array', 'bool', 'boolean', 'double', 'float', 'int', 'integer', 'real', 'resource', 'resource (closed)', 'string' => new SimpleType($typeName, $allowsNull),
'mixed' => new MixedType,
default => new ObjectType(TypeName::fromQualifiedName($typeName), $allowsNull),
'mixed' => new MixedType,
default => new ObjectType(TypeName::fromQualifiedName($typeName), $allowsNull),
};
}

Expand Down

0 comments on commit f3541cf

Please sign in to comment.