open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/Model/SoftDeleteableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface\Model;

/**
 * Interface SoftDeleteableInterface
 */
interface SoftDeleteableInterface
{
    /**
     * Set deleted
     *
     * @param boolean $deleted
     */
    public function setDeleted($deleted);

    /**
     * Get deleted
     *
     * @return boolean $deleted
     */
    public function isDeleted();
}