|
@@ -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();
|
|
|
}
|
|
|
}
|