mirror of
https://github.com/code-rhapsodie/versioning-bundle.git
synced 2026-03-24 06:42:18 +01:00
20 lines
270 B
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();
|
|
}
|