diff --git a/core/General/UsageInformationAble.php b/core/General/UsageInformationAble.php index e819034d..80283fb0 100644 --- a/core/General/UsageInformationAble.php +++ b/core/General/UsageInformationAble.php @@ -8,5 +8,5 @@ namespace ManiaControl\General; * @package ManiaControl\General */ interface UsageInformationAble { - public function getUsage(); + public function getUsageInformation(); } \ No newline at end of file diff --git a/core/General/UsageInformationTrait.php b/core/General/UsageInformationTrait.php index 40a98260..35f577f3 100644 --- a/core/General/UsageInformationTrait.php +++ b/core/General/UsageInformationTrait.php @@ -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();