Skip to content

Commit

Permalink
Add changePackage() to ExampleProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
uphlewis committed Sep 28, 2023
1 parent c505a12 commit 9ae5118
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Providers/Example/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use Upmind\ProvisionBase\Provider\DataSet\AboutData;
use Upmind\ProvisionProviders\Seo\Category;
use Upmind\ProvisionProviders\Seo\Data\AccountIdentifierParams;
use Upmind\ProvisionProviders\Seo\Data\ChangePackageParams;
use Upmind\ProvisionProviders\Seo\Data\CreateParams;
use Upmind\ProvisionProviders\Seo\Data\CreateResult;
use Upmind\ProvisionProviders\Seo\Data\EmptyResult;
Expand Down Expand Up @@ -47,6 +48,14 @@ public function create(CreateParams $params): CreateResult
throw $this->errorResult('Not Implemented');
}

/**
* @inheritDoc
*/
public function changePackage(ChangePackageParams $params): EmptyResult
{
throw $this->errorResult('Not Implemented');
}

/**
* @inheritDoc
*/
Expand Down

0 comments on commit 9ae5118

Please sign in to comment.