mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-28 14:44:17 +01:00
14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Debug\Tests\Fixtures;
|
|
|
|
class AnnotatedClass
|
|
{
|
|
/**
|
|
* @deprecated since version 3.4.
|
|
*/
|
|
public function deprecatedMethod()
|
|
{
|
|
}
|
|
}
|