コード例 #1
0
ファイル: JsonBody.php プロジェクト: teeebor/decoy-framework
 /**
  * JsonBody constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->content = json_decode($this->input, true);
 }
コード例 #2
0
ファイル: FormBody.php プロジェクト: teeebor/decoy-framework
 /**
  * FormBody constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->parse();
 }
コード例 #3
0
ファイル: PlainBody.php プロジェクト: teeebor/decoy-framework
 /**
  * PlainBody constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->content = $this->input;
 }