Files
versioning-bundle/Provider/ProviderInterface.php

20 lines
270 B
PHP

<?php
namespace Shivas\VersioningBundle\Provider;
/**
* Interface ProviderInterface
*/
interface ProviderInterface
{
/**
* @return boolean
*/
public function isSupported();
/**
* @return string
*/
public function getVersion();
}