mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-20 17:42:59 +00:00
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);
|
|
}
|