summaryrefslogtreecommitdiff
path: root/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php
blob: 05f18e83e4a9e81ac0e06c11af88ee4d57e86ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace Symfony\Component\Debug\Tests\Fixtures;

/**
 * @internal
 */
trait InternalTrait2
{
    /**
     * @internal since version 3.4
     */
    public function internalMethod()
    {
    }

    /**
     * @internal but should not trigger a deprecation
     */
    public function usedInInternalClass()
    {
    }
}