D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
vendor
/
symfony
/
debug
/
Tests
/
Fixtures
/
Filename :
VirtualClassMagicCall.php
back
Copy
<?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) { } }