Skip to content

Commit

Permalink
More Psalm
Browse files Browse the repository at this point in the history
Signed-off-by: Claus-Justus Heine <[email protected]>
  • Loading branch information
rotdrop committed Feb 21, 2023
1 parent b1156ce commit 6543b7b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/dav/lib/Connector/Sabre/QuirksPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ class QuirksPlugin extends ServerPlugin {
/** @var bool */
private $isMacOSDavAgent = false;

/** @psalm-var array{major: string, minor: string, patch: string} */
private $macOSVersion;
/** @psalm-var null|array{major: string, minor: string, patch: string} */
private $macOSVersion = null;

/** @var string */
private $macOSAgent;
/** @var null|string */
private $macOSAgent = null;

/** @psalm-var array{major: string, minor: null|string, patch: null|string} */
private $macOSAgentVersion;
/** @psalm-var null|array{major: string, minor: null|string, patch: null|string} */
private $macOSAgentVersion = null;

/**
* Sets up the plugin.
Expand Down

0 comments on commit 6543b7b

Please sign in to comment.