mirror of
https://github.com/symfony/error-handler.git
synced 2026-03-24 00:02:09 +01:00
19 lines
312 B
PHP
19 lines
312 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\ErrorHandler\Tests\Fixtures;
|
|
|
|
/**
|
|
* @method string magicMethod()
|
|
* @method static string staticMagicMethod()
|
|
*/
|
|
class VirtualClassMagicCall
|
|
{
|
|
public static function __callStatic($name, $arguments)
|
|
{
|
|
}
|
|
|
|
public function __call($name, $arguments)
|
|
{
|
|
}
|
|
}
|