mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-28 22:54:12 +01:00
14 lines
163 B
PHP
14 lines
163 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Debug\Tests\Fixtures;
|
|
|
|
trait TraitWithInternalMethod
|
|
{
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function foo()
|
|
{
|
|
}
|
|
}
|