api_generator / branches / master / tests / test_app / inline_parents.php

history
<?php
interface SomeOtherInterface {
	const FOOO = 'foo';
}
class BazTestFile implements SomeOtherInterface {
	
}
class BarTestFile extends BazTestFile {
	
}
class FooBarTestFile extends BarTestFile {
	
}