19 lines
305 B
PHP
Executable File
19 lines
305 B
PHP
Executable File
<?php
|
|
|
|
namespace Symfony\Component\Debug\Tests\Fixtures;
|
|
|
|
/**
|
|
* @method string magicMethod()
|
|
* @method static string staticMagicMethod()
|
|
*/
|
|
class VirtualClassMagicCall
|
|
{
|
|
public static function __callStatic($name, $arguments)
|
|
{
|
|
}
|
|
|
|
public function __call($name, $arguments)
|
|
{
|
|
}
|
|
}
|