<?php namespace A { function myFunction() {} const MY_CONSTANT = 0; } namespace B { use function A\myFunction; use const A\MY_CONSTANT; var_dump( myFunction::class, MY_CONSTANT::class ); }
You have javascript disabled. You will not be able to edit any code.