mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 10:43:35 +01:00
10 lines
149 B
PHP
10 lines
149 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Composer\Contract;
|
|
|
|
interface VersionAwareInterface
|
|
{
|
|
public function getVersion() : string;
|
|
}
|