Files
faveo/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php
2019-04-19 14:37:37 +05:30

14 lines
163 B
PHP

<?php
namespace Symfony\Component\Debug\Tests\Fixtures;
trait TraitWithInternalMethod
{
/**
* @internal
*/
public function foo()
{
}
}