aboutsummaryrefslogtreecommitdiff
path: root/app/Exceptions/FeedNotAddedException.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Exceptions/FeedNotAddedException.php')
-rw-r--r--app/Exceptions/FeedNotAddedException.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Exceptions/FeedNotAddedException.php b/app/Exceptions/FeedNotAddedException.php
index 02a8bc6be..350a17c56 100644
--- a/app/Exceptions/FeedNotAddedException.php
+++ b/app/Exceptions/FeedNotAddedException.php
@@ -5,10 +5,10 @@ class FreshRSS_FeedNotAdded_Exception extends Exception {
public function __construct($url, $feedName) {
parent::__construct('Feed not added! ' . $url, 2147);
- $this->$feedName = $feedName;
+ $this->feedName = $feedName;
}
public function feedName() {
- return $this->feedName();
+ return $this->feedName;
}
}