Here is my problem, when I defined a class name with "use" in php and then I tried to include a file, it loses the "used name" that I defined in the parent file. Like this:
File1.php:
use \cdb\Date as H;
echo "<br> > 1 > " . H::Now();
require 'File2.php';
File2.php:
echo "<br> > 3 > " . H::Now();
When I execute my File1.php code this error appears:
Fatal error: Class 'H' not found in File2.php on line 3