Skip to content

Commit

Permalink
Merge pull request #202 from hotbytes-dev/patch-1
Browse files Browse the repository at this point in the history
[TASK] Properly type-hint IndexerBase constructor
  • Loading branch information
christianbltr authored Nov 24, 2023
2 parents 309f407 + d34302d commit 2bbe391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Indexer/IndexerBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ class IndexerBase

/**
* Constructor of this object
* @param $pObj
* @param IndexerRunner $pObj
*/
public function __construct($pObj)
public function __construct(IndexerRunner $pObj)
{
$this->startMicrotime = microtime(true);
$this->pObj = $pObj;
Expand Down

0 comments on commit 2bbe391

Please sign in to comment.