hasFinal() public method

Scans for final methods, as they screw up inherited mocks by not allowing you to override them.
public hasFinal ( )
 function testDetectionOfFinalMethods()
 {
     $reflection = new SimpleReflection('AnyOldClass');
     $this->assertFalse($reflection->hasFinal());
     $reflection = new SimpleReflection('AnyOldLeafClassWithAFinal');
     $this->assertTrue($reflection->hasFinal());
 }