onlinetest 5 years ago
parent
commit
50ae8a5a78

+ 1 - 1
app/Libs/Pay/PayFactory.php

@@ -10,7 +10,7 @@ namespace App\Libs\Pay;
  */
 class PayFactory
 {
-	public function __callStatic($name, $arguments)
+	public static function __callStatic($name, $arguments)
 	{
 		$namesapce = "\\App\\Libs\\Pay\\Merchants";
 		$application = $namesapce . "\\" . ucfirst($name);

+ 1 - 1
app/Modules/Trade/Pay/OrderArousePayFactory.php

@@ -9,7 +9,7 @@ namespace App\Modules\Trade\Pay;
  */
 class OrderArousePayFactory
 {
-    public function __callStatic($name, $arguments)
+    public static function __callStatic($name, $arguments)
     {
         $name =  ucfirst($name) . 'OrderArousePay';
         $namesapce = "\\App\\Modules\\Trade\\Pay";

+ 1 - 1
app/Modules/Trade/Pay/PayWait.php

@@ -23,7 +23,7 @@ class PayWait
      * 
      *@param array $arguments 第一个参数默认$uid
      */
-    public function __callStatic($name, $arguments)
+    public static function __callStatic($name, $arguments)
     {
         if (!self::$_instatnce) {
             self::$_instatnce = new PayWait($arguments[0]);