From 602ec5b7fc04aff71e7d91ab4f01b9bd69a75c4e Mon Sep 17 00:00:00 2001 From: kremsy Date: Sun, 26 Mar 2017 13:01:18 +0200 Subject: [PATCH] renamed the new usageinformation method --- core/General/UsageInformationAble.php | 2 +- core/General/UsageInformationTrait.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();