Skip to content

Commit

Permalink
Merge branch '3' into 4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 14, 2024
2 parents 392a8c2 + d6b2fbe commit 4af2e2f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Tasks/UpdatePackageInfoTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class UpdatePackageInfoTask extends BuildTask

/**
* @var SupportedAddonsLoader
* @deprecated 3.3.0 Will be removed without equivalent functionality
*/
protected $supportedAddonsLoader;

Expand Down Expand Up @@ -99,18 +100,24 @@ public function setComposerLoader($composerLoader)

/**
* @return SupportedAddonsLoader
* @deprecated 3.3.0 Will be removed without equivalent functionality
*/
public function getSupportedAddonsLoader()
{
Deprecation::notice('3.3.0', 'Will be removed without equivalent functionality');
return $this->supportedAddonsLoader;
}

/**
* @param SupportedAddonsLoader $supportedAddonsLoader
* @return $this
* @deprecated 3.3.0 Will be removed without equivalent functionality
*/
public function setSupportedAddonsLoader(SupportedAddonsLoader $supportedAddonsLoader)
{
Deprecation::withNoReplacement(
fn() => Deprecation::notice('3.3.0', 'Will be removed without equivalent functionality')
);
$this->supportedAddonsLoader = $supportedAddonsLoader;
return $this;
}
Expand Down

0 comments on commit 4af2e2f

Please sign in to comment.