parser/tests/fixtures/0278/code.php

20 lines
286 B
PHP
Raw Normal View History

<?php
function true(): void {}
function false(): void {}
function null(): void {}
function readonly(): void {}
function self(): void {}
function parent(): void {}
function enum(): void {}
function from(): void {}
true();
false();
null();
readonly();
self();
parent();
enum();
from();