diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 7e1682a3..93829786 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
For example: MyBridge.php
=> MyBridge
<?PHP
-class MyBridge extends BridgeAbstract {
+class MyBridge extends BridgeAbstract
+{
}
-// This line is empty (just imagine it!)
<?php
-class MyBridge extends BridgeAbstract {
+class MyBridge extends BridgeAbstract
+{
const NAME = 'My Bridge';
const URI = 'https://rss-bridge.github.io/rss-bridge/Bridge_API/BridgeAbstract.html';
const DESCRIPTION = 'Returns "Hello World!"';
diff --git a/Bridge_API/FeedExpander.html b/Bridge_API/FeedExpander.html
index cfffec34..734d0862 100644
--- a/Bridge_API/FeedExpander.html
+++ b/Bridge_API/FeedExpander.html
@@ -100,7 +100,7 @@
Bridge API FeedExpander
- August 29, 2024 at 7:22 PM
+ August 29, 2024 at 7:37 PM
Edit on GitHub
diff --git a/Bridge_API/How_to_create_a_new_bridge.html b/Bridge_API/How_to_create_a_new_bridge.html
index bf561f3b..d1da6c84 100644
--- a/Bridge_API/How_to_create_a_new_bridge.html
+++ b/Bridge_API/How_to_create_a_new_bridge.html
@@ -100,7 +100,7 @@
Bridge API How to create a new bridge
- August 29, 2024 at 7:22 PM
+ August 29, 2024 at 7:37 PM
Edit on GitHub
@@ -151,7 +151,8 @@
// PHP code here
// This line is empty (just imagine it!)
-The next step is to extend one of the base classes. Refer to one of an base classes listed on the Bridge API page.
+The next step is to extend one of the base classes.
+Refer to one of an base classes listed on the Bridge API page.