mirror of
https://github.com/danog/Valinor.git
synced 2024-12-04 18:47:48 +01:00
14 lines
270 B
PHP
14 lines
270 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Fixture\Object;
|
|
|
|
final class ObjectWithParameterDefaultObjectValue
|
|
{
|
|
public function method(StringableObject $object = new StringableObject('bar')): StringableObject
|
|
{
|
|
return $object;
|
|
}
|
|
}
|