mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
18 lines
312 B
PHP
18 lines
312 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Arguments\Contract;
|
|
|
|
interface ReplaceArgumentDefaultValueInterface
|
|
{
|
|
public function getPosition() : int;
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getValueBefore();
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getValueAfter();
|
|
}
|