Browse Source

address phpcs style errors

Matt DeMoss 6 years ago
parent
commit
c14b2c6905
1 changed files with 3 additions and 3 deletions
  1. 3 3
      bridges/YoutubeBridge.php

+ 3 - 3
bridges/YoutubeBridge.php

@@ -196,9 +196,9 @@ class YoutubeBridge extends BridgeAbstract {
 		case 'By channel id':
 		case 'By playlist Id':
 		case 'Search result':
-      return $this->feedName . ' - ' . 'YouTube'; // We already know it's a bridge, right?
-    default:
-      return parent::getName();
+			return $this->feedName . ' - YouTube'; // We already know it's a bridge, right?
+		default:
+			return parent::getName();
 		}
   }
 }