Is it possible to use variable in use statement? How to implement version control with traits and other files i define with use statement?
<?php
namespace SomeNamespace;
$vers = '10';
use SomeNamespace2\someTrait_$vers;
use SomeNamespace3\someTrait_$vers;
I would like to be able to assign single version to all use statements.