Files
laravel-data-sync/vendor/symfony/var-dumper/Tests/Fixtures/FooInterface.php
2019-01-22 17:58:20 -05:00

12 lines
180 B
PHP

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