Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated return type doc
Browse files Browse the repository at this point in the history
shishir-intelli committed Sep 12, 2023
1 parent 2513627 commit 30c49b2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Entity/Controller/AppByOwnerController.php
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@
use Drupal\apigee_edge\SDKConnectorInterface;

/**
* Base class for developer- and company app controller services in Drupal.
* Base class for developer- and company/appgroup app controller services in Drupal.
*/
abstract class AppByOwnerController extends AppControllerBase implements AppByOwnerControllerInterface {

@@ -96,12 +96,12 @@ public function __construct(string $owner, SDKConnectorInterface $connector, Org
}

/**
* Returns the decorated developer- or company app controller.
* Returns the decorated developer- or company/appgroup app controller.
*
* @return \Apigee\Edge\Api\Management\Controller\AppByOwnerControllerInterface
* The initialized developer- or company app controller.
* @return \Apigee\Edge\Api\Management\Controller\AppByOwnerControllerInterface|Apigee\Edge\Api\ApigeeX\Controller\AppByOwnerControllerInterface
* The initialized developer- or company/appgroup app controller.
*/
abstract protected function decorated() : EdgeAppByOwnerControllerInterface | XAppByOwnerControllerInterface;
abstract protected function decorated() : EdgeAppByOwnerControllerInterface|XAppByOwnerControllerInterface;

/**
* {@inheritdoc}

0 comments on commit 30c49b2

Please sign in to comment.