12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\VarDumper\Tests\Fixtures;
|
|
|
|
interface FooInterface
|
|
{
|
|
/**
|
|
* Hello.
|
|
*/
|
|
public function foo(?\stdClass $a, \stdClass $b = null);
|
|
}
|