Skip to content

Commit

Permalink
Merge branch '226-docs-generation-fails-for-requests-that-utilise-cus…
Browse files Browse the repository at this point in the history
…tom-values' of github.com:dedoc/documentor into 226-docs-generation-fails-for-requests-that-utilise-custom-values
  • Loading branch information
romalytvynenko committed Mar 4, 2024
2 parents 8f742b0 + 14290a9 commit b4755e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Infer/Extensions/Event/Concerns/ArgumentTypesAware.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

trait ArgumentTypesAware
{
public function getArg(string $name, int $position, Type $default = null)
public function getArg(string $name, int $position, ?Type $default = null)
{
$default ??= new UnknownType();

Expand Down
2 changes: 1 addition & 1 deletion src/Support/Type/ConcatenatedStringType.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ConcatenatedStringType extends StringType
{
/**
* @param Type[] $parts Types of parts being concatenated.
* @param Type[] $parts Types of parts being concatenated.
*/
public function __construct(public array $parts)
{
Expand Down

0 comments on commit b4755e0

Please sign in to comment.