Skip to content

Commit

Permalink
Merge branch 'list-all-method' of github.com:vormkracht10/wefact-php …
Browse files Browse the repository at this point in the history
…into list-all-method
  • Loading branch information
Baspa committed Aug 30, 2023
2 parents 569c881 + 0e19c04 commit 5d5a79c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Resources/CreditInvoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}
}
2 changes: 1 addition & 1 deletion src/Resources/Creditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}
}
2 changes: 1 addition & 1 deletion src/Resources/Debtor.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}
}
2 changes: 1 addition & 1 deletion src/Resources/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}
}
2 changes: 1 addition & 1 deletion src/Resources/Settings/CostCategory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function getPluralResourceName(): string
{
return 'costcategories';
}

/**
* @param array<string, mixed> $params
* @return array<string, mixed>
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function getResourceName(): string

public function getPluralResourceName(): string
{
return self::CONTROLLER_NAME . 's';
return self::CONTROLLER_NAME.'s';
}

/**
Expand Down

0 comments on commit 5d5a79c

Please sign in to comment.