Blame view

vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php 329 Bytes
c4650843   Etienne Pallier   Ajout du dossier ...
1
2
3
4
5
6
7
8
9
10
<?php

namespace Symfony\Component\Debug\Tests\Fixtures;

/**
 * @internal
 */
trait InternalTrait2
{
    /**
d06254b2   Etienne Pallier   bugfix plugin mig...
11
     * @internal since version 3.4
c4650843   Etienne Pallier   Ajout du dossier ...
12
13
14
15
16
17
18
19
20
21
22
23
     */
    public function internalMethod()
    {
    }

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