open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/Model/ReadSitemapableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface\Model;

/**
 * interface ReadSitemapableInterface
 */
interface ReadSitemapableInterface
{
    /**
     * Get sitemapChangefreq
     *
     * @return string $sitemapChangefreq
     */
    public function getSitemapChangefreq();

    /**
     * Get sitemapPriority
     *
     * @return string $sitemapPriority
     */
    public function getSitemapPriority();
}