Ive just started learning namespaces. If I do this:
$a = new Devices\Desktop();
this works. But I have dynamic class names, so I have to do it from a variable.
$a = 'Devices\Desktop';
$a = new $a();
this is not working, although its the same. The class is not found. Why?