Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <?php
-
- namespace App\Http\Controllers\Web;
-
- use App\Codes\HTTPResultCode as ResultCode;
-
- abstract class FromKintoneController extends WebController
- {
- public function __construct()
- {
- parent::__construct();
- $this->middleware('fromKintone');
- }
-
- protected function makeResponse()
- {
- if ($this->resultCode === ResultCode::SECCESS) {
- return response()->json([
- 'result' => 'SUCCESS'
- ]);
- }
- return response()->json([
- 'result' => 'FAILED'
- ]);
- }
- }
|