rabin 2 天之前
父节点
当前提交
bfac40a593
共有 5 个文件被更改,包括 15 次插入0 次删除
  1. 4 0
      app/Lib/Platform/Request.php
  2. 7 0
      app/Lib/Platform/Response.php
  3. 2 0
      app/Lib/Platform/Sign.php
  4. 1 0
      app/Lib/Platform/Ssl.php
  5. 1 0
      app/Lib/Platform/Value.php

+ 4 - 0
app/Lib/Platform/Request.php

@@ -2,6 +2,10 @@
 use Dever;
 class Request
 {
+    private $field;
+    private $platform_id;
+    private $type;
+    private $type_id;
     public function init($field, $platform_id, $type, $type_id)
     {
         $this->field = $field;

+ 7 - 0
app/Lib/Platform/Response.php

@@ -2,6 +2,13 @@
 use Dever;
 class Response
 {
+    private $body;
+    private $header;
+    private $field;
+    private $type;
+    private $type_id;
+    private $config;
+
     public function init($body, $header, $field, $config, $type, $type_id)
     {
         $this->body = $body;

+ 2 - 0
app/Lib/Platform/Sign.php

@@ -2,6 +2,8 @@
 use Dever;
 class Sign
 {
+    private $field;
+    private $config;
     public function init($field, $config)
     {
         $this->field = $field;

+ 1 - 0
app/Lib/Platform/Ssl.php

@@ -2,6 +2,7 @@
 use Dever;
 class Ssl
 {
+    private $field;
     public function init($field)
     {
         $this->field = $field;

+ 1 - 0
app/Lib/Platform/Value.php

@@ -2,6 +2,7 @@
 use Dever;
 class Value
 {
+    private $field;
     public function init($field)
     {
         $this->field = $field;