rabin před 2 dny
rodič
revize
bfac40a593

+ 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;