OOP Learning Mode

What is the output of the following code?

<?php
    class A {};
    class B1 extends A {};
    class_alias('A', 'B2');
    $b1 = new B1; echo get_class($b1); 
    $b2 = new B2; echo get_class($b2);
?>