open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/Model/HistorisableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface\Model;

/**
 * Interface HistorisableInterface
 */
interface HistorisableInterface
{
    /**
     * Add history
     *
     * @param HistoryInterface $history
     */
    public function addHistory(HistoryInterface $history);
}