Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
shishir-intelli committed Sep 11, 2024
1 parent 71fd8eb commit 2881cfc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* Base class for all supported Monetization reports.
*
*
* @internal
*
* @see https://docs.apigee.com/api-platform/monetization/create-reports#repdefconfigapi
Expand Down Expand Up @@ -119,7 +119,7 @@ public function getApps(): array
/**
* @param string ...$appIds
*
* @return \self
* @return self
*/
public function setApps(string ...$appIds): self
{
Expand All @@ -139,7 +139,7 @@ public function getCurrencies(): array
/**
* @param string ...$currencyIds
*
* @return \self
* @return self
*/
public function setCurrencies(string ...$currencyIds): self
{
Expand All @@ -159,7 +159,7 @@ public function getCurrencyOption(): ?string
/**
* @param string|null $currencyOption
*
* @return \self
* @return self
*/
public function setCurrencyOption(?string $currencyOption): self
{
Expand All @@ -173,7 +173,7 @@ public function setCurrencyOption(?string $currencyOption): self
/**
* @param string ...$developerIds
*
* @return \self
* @return self
*/
public function setDevelopers(string ...$developerIds): self
{
Expand Down Expand Up @@ -201,7 +201,7 @@ public function getApiPackages(): array
/**
* @param string ...$apiPackageIds
*
* @return \self
* @return self
*/
public function setApiPackages(string ...$apiPackageIds): self
{
Expand All @@ -221,7 +221,7 @@ public function getApiProducts(): array
/**
* @param string ...$apiProductIds
*
* @return \self
* @return self
*/
public function setApiProducts(string ...$apiProductIds): self
{
Expand All @@ -241,7 +241,7 @@ public function getPricingTypes(): array
/**
* @param string ...$pricingTypes
*
* @return \self
* @return self
*/
public function setPricingTypes(string ...$pricingTypes): self
{
Expand All @@ -261,7 +261,7 @@ public function getRatePlanLevels(): array
/**
* @param string ...$ratePlanLevels
*
* @return \self
* @return self
*/
public function setRatePlanLevels(string ...$ratePlanLevels): self
{
Expand Down Expand Up @@ -305,7 +305,7 @@ public function getShowTransactionType(): bool
/**
* @param bool $show
*
* @return \self
* @return self
*/
public function setShowRevenueSharePercentage(bool $show): self
{
Expand All @@ -317,7 +317,7 @@ public function setShowRevenueSharePercentage(bool $show): self
/**
* @param bool $show
*
* @return \self
* @return self
*/
public function setShowSummary(bool $show): self
{
Expand All @@ -329,7 +329,7 @@ public function setShowSummary(bool $show): self
/**
* @param bool $show
*
* @return \self
* @return self
*/
public function setShowTransactionDetail(bool $show): self
{
Expand All @@ -341,7 +341,7 @@ public function setShowTransactionDetail(bool $show): self
/**
* @param bool $show
*
* @return \self
* @return self
*/
public function setShowTransactionType(bool $show): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function getGroupBy(): array
/**
* @param string ...$groupBy
*
* @return \self
* @return self
*/
public function setGroupBy(string ...$groupBy): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getTransactionTypes(): array
/**
* @param string ...$transactionTypes
*
* @return \self
* @return self
*/
public function setTransactionTypes(string ...$transactionTypes): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected static function getUpdatedReportDefinition(ReportDefinitionInterface $
{
$updated = clone $existing;
$updated->setDescription($randomData ? static::randomGenerator()->text() : '(edited) test report definition provider');
/** @var \Apigee\Edge\Api\Monetization\Structure\Reports\Criteria\BillingReportCriteria $criteria */
/** @var BillingReportCriteria $criteria */
$criteria = $updated->getCriteria();
$criteria->setBillingMonth('FEBRUARY');
$criteria->setShowSummary(!$criteria->getShowSummary());
Expand Down

0 comments on commit 2881cfc

Please sign in to comment.