File: PseudoType.php

package info (click to toggle)
php-phpdocumentor-type-resolver 1.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,444 kB
  • sloc: php: 26,466; xml: 102; makefile: 50
file content (19 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

/**
 * This file is part of phpDocumentor.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @link      http://phpdoc.org
 */

namespace phpDocumentor\Reflection;

interface PseudoType extends Type
{
    public function underlyingType(): Type;
}