Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <?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'
- ]);
- }
- }
|