mirror of
https://github.com/code-rhapsodie/versioning-bundle.git
synced 2026-03-24 06:42:18 +01:00
18 lines
265 B
PHP
18 lines
265 B
PHP
<?php
|
|
|
|
namespace Shivas\VersioningBundle\Formatter;
|
|
|
|
use Version\Version;
|
|
|
|
/**
|
|
* Interface FormatterInterface
|
|
*/
|
|
interface FormatterInterface
|
|
{
|
|
/**
|
|
* @param Version $version
|
|
* @return Version
|
|
*/
|
|
public function format(Version $version);
|
|
}
|