mirror of
https://github.com/symfony/error-handler.git
synced 2026-03-24 00:02:09 +01:00
12 lines
150 B
PHP
12 lines
150 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\ErrorHandler\Tests\Fixtures;
|
|
|
|
/**
|
|
* @method string classMethod()
|
|
*/
|
|
class VirtualClass
|
|
{
|
|
use VirtualTrait;
|
|
}
|