2021-01-18 11:07:57 +01:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2021-01-18 11:07:57 +01:00
|
|
|
namespace Rector\Composer\Contract;
|
|
|
|
|
|
|
|
interface VersionAwareInterface
|
|
|
|
{
|
2021-05-09 20:15:43 +00:00
|
|
|
public function getVersion() : string;
|
2021-01-18 11:07:57 +01:00
|
|
|
}
|