renamed the new usageinformation method

This commit is contained in:
kremsy 2017-03-26 13:01:18 +02:00
parent 46daaee61a
commit 602ec5b7fc
2 changed files with 2 additions and 2 deletions

View File

@ -8,5 +8,5 @@ namespace ManiaControl\General;
* @package ManiaControl\General
*/
interface UsageInformationAble {
public function getUsage();
public function getUsageInformation();
}

View File

@ -13,7 +13,7 @@ trait UsageInformationTrait {
/**
* Gets Information about the Class, and a List of the Public Method
*/
public function getUsage() {
public function getUsageInformation() {
$reflection = new ReflectionClass(get_class($this));
echo $reflection->getDocComment();