<?php namespace Rector\Tests\TypeDeclaration\Rector\ClassMethod\ParamTypeByMethodCallTypeRector\Fixture; final class SkipDefaultNumericStringParamInt { public function go(int $value = '1') { $this->execute($value); } private function execute(int $value) { echo $value; } } $obj = new SkipDefaultNumericStringParamInt(); $obj->go();
You have javascript disabled. You will not be able to edit any code.