diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-03 01:10:39 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 22:47:48 +0100 |
commit | f24896b237e40718fb6eaa2869592eb0855a47fd (patch) | |
tree | 32ca9a3e096981840426a9b762d57ec8db2ecbee /application/feed/FeedBuilder.php | |
parent | a0c4dbd91c41b9ecdd5176c1ac33b55e240d2392 (diff) | |
download | Shaarli-f24896b237e40718fb6eaa2869592eb0855a47fd.tar.gz Shaarli-f24896b237e40718fb6eaa2869592eb0855a47fd.tar.zst Shaarli-f24896b237e40718fb6eaa2869592eb0855a47fd.zip |
namespacing: \Shaarli\Bookmark\LinkDB
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'application/feed/FeedBuilder.php')
-rw-r--r-- | application/feed/FeedBuilder.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/application/feed/FeedBuilder.php b/application/feed/FeedBuilder.php index dcfd2c89..737a3128 100644 --- a/application/feed/FeedBuilder.php +++ b/application/feed/FeedBuilder.php | |||
@@ -2,7 +2,7 @@ | |||
2 | namespace Shaarli\Feed; | 2 | namespace Shaarli\Feed; |
3 | 3 | ||
4 | use DateTime; | 4 | use DateTime; |
5 | use LinkDB; | 5 | use Shaarli\Bookmark\LinkDB; |
6 | 6 | ||
7 | /** | 7 | /** |
8 | * FeedBuilder class. | 8 | * FeedBuilder class. |
@@ -32,7 +32,7 @@ class FeedBuilder | |||
32 | public static $DEFAULT_NB_LINKS = 50; | 32 | public static $DEFAULT_NB_LINKS = 50; |
33 | 33 | ||
34 | /** | 34 | /** |
35 | * @var LinkDB instance. | 35 | * @var \Shaarli\Bookmark\LinkDB instance. |
36 | */ | 36 | */ |
37 | protected $linkDB; | 37 | protected $linkDB; |
38 | 38 | ||
@@ -79,11 +79,12 @@ class FeedBuilder | |||
79 | /** | 79 | /** |
80 | * Feed constructor. | 80 | * Feed constructor. |
81 | * | 81 | * |
82 | * @param LinkDB $linkDB LinkDB instance. | 82 | * @param \Shaarli\Bookmark\LinkDB $linkDB LinkDB instance. |
83 | * @param string $feedType Type of feed. | 83 | * @param string $feedType Type of feed. |
84 | * @param array $serverInfo $_SERVER. | 84 | * @param array $serverInfo $_SERVER. |
85 | * @param array $userInput $_GET. | 85 | * @param array $userInput $_GET. |
86 | * @param boolean $isLoggedIn True if the user is currently logged in, false otherwise. | 86 | * @param boolean $isLoggedIn True if the user is currently logged in, |
87 | * false otherwise. | ||
87 | */ | 88 | */ |
88 | public function __construct($linkDB, $feedType, $serverInfo, $userInput, $isLoggedIn) | 89 | public function __construct($linkDB, $feedType, $serverInfo, $userInput, $isLoggedIn) |
89 | { | 90 | { |