Skip to content

Commit

Permalink
Move JsonResponse to Helper.
Browse files Browse the repository at this point in the history
  • Loading branch information
maurobonfietti committed Jun 26, 2020
1 parent 8486b64 commit cbf5d1c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Command/TemplateBase/Objectbase/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Controller\Objectbase;

use App\Lib\JsonResponse;
use App\Helper\JsonResponse;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;

Expand Down
2 changes: 1 addition & 1 deletion src/Command/TemplateBase/Objectbase/Delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Controller\Objectbase;

use App\Lib\JsonResponse;
use App\Helper\JsonResponse;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;

Expand Down
2 changes: 1 addition & 1 deletion src/Command/TemplateBase/Objectbase/GetAll.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Controller\Objectbase;

use App\Lib\JsonResponse;
use App\Helper\JsonResponse;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;

Expand Down
2 changes: 1 addition & 1 deletion src/Command/TemplateBase/Objectbase/GetOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Controller\Objectbase;

use App\Lib\JsonResponse;
use App\Helper\JsonResponse;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;

Expand Down
2 changes: 1 addition & 1 deletion src/Command/TemplateBase/Objectbase/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Controller\Objectbase;

use App\Lib\JsonResponse;
use App\Helper\JsonResponse;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;

Expand Down

0 comments on commit cbf5d1c

Please sign in to comment.