Craft\Import_HistoryService::end PHP Метод

end() публичный Метод

Stop logging.
public end ( integer $history, string $status )
$history integer
$status string
    public function end($history, $status)
    {
        $history = $this->findHistoryById($history);
        $history->status = $status;
        $history->save(false);
    }