Skip to content

Commit

Permalink
Issue techjoomla#89 feat: Fix return types
Browse files Browse the repository at this point in the history
  • Loading branch information
manojLondhe committed Jan 3, 2019
1 parent 3db78b3 commit bfef900
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion categories/categories/categories.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CategoriesApiResourceCategories extends ApiResource
/**
* Get categories
*
* @return obj Categories list wrapped inside standard api response wrapper
* @return object Categories list wrapped inside standard api response wrapper
*/
public function get()
{
Expand Down
4 changes: 2 additions & 2 deletions categories/categories/category.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CategoriesApiResourceCategory extends ApiResource
/**
* Get categories
*
* @return obj Category details wrapped inside standard api response wrapper
* @return object Category details wrapped inside standard api response wrapper
*/
public function get()
{
Expand All @@ -34,7 +34,7 @@ public function get()
/**
* Save category - create / update
*
* @return obj Category details wrapped inside standard api response wrapper
* @return object Category details wrapped inside standard api response wrapper
*/
public function post()
{
Expand Down

0 comments on commit bfef900

Please sign in to comment.