renamed the new usageinformation method
This commit is contained in:
parent
46daaee61a
commit
602ec5b7fc
@ -8,5 +8,5 @@ namespace ManiaControl\General;
|
||||
* @package ManiaControl\General
|
||||
*/
|
||||
interface UsageInformationAble {
|
||||
public function getUsage();
|
||||
public function getUsageInformation();
|
||||
}
|
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user