This commit is contained in:
2021-02-23 18:04:18 +08:00
parent 45f229af75
commit a37ca1efe5
+2 -2
View File
@@ -471,9 +471,9 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
} else { } else {
$trance->commit(); $trance->commit();
$result = $this->event->dispatch(self::AFTER_SAVE, [$attributes, $param]); $this->event->dispatch(self::AFTER_SAVE, [$attributes, $param]);
var_dump($result); $result = true;
} }
return $result; return $result;
} }