xxxrrrdddd 3 years ago
parent
commit
da1f707640
1 changed files with 2 additions and 6 deletions
  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();
     }
 }