Skip to content

Commit

Permalink
Fix phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
Miraeld committed Feb 13, 2025
1 parent ca9bd70 commit 66e41dc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions inc/Engine/Media/PreloadFonts/Frontend/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,35 @@ class Controller implements ControllerInterface {
*
* @var Options_Data
*/
private $options;
private $options; // @phpstan-ignore-line Use of this will come later.

/**
* Queries instance
*
* @var ATFQuery
* @var PFQuery
*/
private $query;
private $query; // @phpstan-ignore-line Use of this will come later.

/**
* Context instance.
*
* @var Context
*/
private $context;
private $context; // @phpstan-ignore-line Use of this will come later.

/**
* Constructor
*
* @param Options_Data $options Options instance.
* @param ATFQuery $query Queries instance.
* @param PFQuery $query Queries instance.
* @param Context $context Context instance.
*/
public function __construct( Options_Data $options, PFQuery $query, Context $context ) {
$this->options = $options;
$this->query = $query;
$this->context = $context;
}

/**
* Applies optimization.
*
Expand Down

0 comments on commit 66e41dc

Please sign in to comment.