From cc20b6220512f85ddc35c71ded116d58bd8c152a Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Fri, 9 Sep 2016 13:12:31 +0200 Subject: [PATCH] [BridgeAbstract] Fix return values of get* functions --- BridgeAbstract.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BridgeAbstract.md b/BridgeAbstract.md index 13b566d..b4c636e 100644 --- a/BridgeAbstract.md +++ b/BridgeAbstract.md @@ -169,7 +169,7 @@ This function returns the name of the bridge as it will be displayed on the main ```PHP public function getName(){ - return $this->name; + return self::NAME; } ``` @@ -181,7 +181,7 @@ This function returns the URI to the destination site of the bridge. It will be ```PHP public function getURI(){ - return $this->uri; + return self::URI; } ```