rector/packages/FileSystemRector/Contract/AddedFileInterface.php

11 lines
154 B
PHP

<?php
declare(strict_types=1);
namespace Rector\FileSystemRector\Contract;
interface AddedFileInterface
{
public function getFilePath(): string;
}