19 lines
305 B
PHP
19 lines
305 B
PHP
|
<?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)
|
||
|
{
|
||
|
}
|
||
|
}
|