Skip to content

Commit

Permalink
added stub of TenantsController
Browse files Browse the repository at this point in the history
  • Loading branch information
Mararok committed Oct 5, 2018
1 parent ba7ba55 commit 3ab28c0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/SAREhub/Servitiom/Api/Controller/Tenant/TenantsController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

namespace SAREhub\Servitiom\Api\Controller\Tenant;


use SAREhub\Microt\App\Controller\Controller;
use Slim\Http\Request;
use Slim\Http\Response;

class TenantsController implements Controller
{
public function getOneAction(Request $request, Response $response): Response
{
//@TODO implement
}

public function getListAction(Request $request, Response $response): Response
{
//@TODO implement
}

public function createAction(Request $request, Response $response): Response
{
//@TODO implement
}

public function deleteAction(Request $request, Response $response): Response
{
//@TODO implement as async operation
}
}

0 comments on commit 3ab28c0

Please sign in to comment.