PHP - Inheritance and Polymorphism
What is wrong with this PHP code snippet?
class Test {}
$instance = new Test();
if (Test instanceof $instance) {
echo 'Valid';
}