| 1 | <?php |
||
| 14 | class ParameterDebugContext implements DebugContextInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var FunctionLike |
||
| 18 | */ |
||
| 19 | private $function; |
||
| 20 | /** |
||
| 21 | * @var PhpParameterReflection |
||
| 22 | */ |
||
| 23 | private $parameter; |
||
| 24 | /** |
||
| 25 | * @var Scope |
||
| 26 | */ |
||
| 27 | private $scope; |
||
| 28 | |||
| 29 | public function __construct(Scope $scope, FunctionLike $function, PhpParameterReflection $parameter) |
||
| 36 | |||
| 37 | public function __toString() |
||
| 51 | |||
| 52 | public function getName(): string |
||
| 56 | } |