12 lines
180 B
PHP
Raw Normal View History

2025-03-12 10:47:34 +08:00
<?php
namespace Symfony\Component\VarDumper\Tests\Fixtures;
interface FooInterface
{
/**
* Hello.
*/
public function foo(?\stdClass $a, \stdClass $b = null);
}