Current File : /home/n742ef5/royalanteam.com/wp-content/plugins/myhome-core/framework/app/Search/Sortable.php
<?php


namespace Tangibledesign\Framework\Search;


/**
 * Interface Sortable
 * @package Tangibledesign\Framework\Search
 */
interface Sortable
{
    /**
     * @return string
     */
    public function getKey(): string;

    /**
     * @return string
     */
    public function getName(): string;

    /**
     * @return string
     */
    public function getSlug(): string;

}