mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-10-29 18:23:53 +01:00
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node\UseItem;
|
|
|
|
require __DIR__ . '/../UseItem.php';
|
|
|
|
if (false) {
|
|
// For classmap-authoritative support.
|
|
class UseUse extends UseItem {
|
|
}
|
|
}
|