Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ruudk authored and github-actions[bot] committed Nov 12, 2024
1 parent 732013a commit fc5b0b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Type/Definition/Directive.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Directive
/**
* Lazily initialized.
*
* @var null|array<string, Directive>
* @var array<string, Directive>|null
*/
protected static ?array $internalDirectives = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Type/Definition/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ abstract class Type implements \JsonSerializable
/** @var array<string, ScalarType> */
protected static ?array $standardTypes = [];

/** @var null|array<string, Type&NamedType> */
/** @var array<string, Type&NamedType>|null */
protected static ?array $builtInTypes = null;

/**
Expand Down

0 comments on commit fc5b0b6

Please sign in to comment.