xxxrrrdddd 3 vuotta sitten
vanhempi
commit
da1f707640
1 muutettua tiedostoa jossa 2 lisäystä ja 6 poistoa
  1. 2 6
      application/service/UserOrderService.php

+ 2 - 6
application/service/UserOrderService.php

@@ -373,14 +373,10 @@ class UserOrderService{
         throw_user('上门接送类型有误');
     }
     protected function recordLog($content){
-        if($this->log){
-            $this->log->setContent($content);
-        }
+        $this->log && $this->log->setContent($content);
     }
     public function __destruct()
     {
-        if($this->log){
-            $this->log->write();
-        }
+        $this->log && $this->log->write();
     }
 }