From f24896b237e40718fb6eaa2869592eb0855a47fd Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Mon, 3 Dec 2018 01:10:39 +0100 Subject: namespacing: \Shaarli\Bookmark\LinkDB Signed-off-by: VirtualTam --- application/feed/FeedBuilder.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'application/feed/FeedBuilder.php') 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 @@ namespace Shaarli\Feed; use DateTime; -use LinkDB; +use Shaarli\Bookmark\LinkDB; /** * FeedBuilder class. @@ -32,7 +32,7 @@ class FeedBuilder public static $DEFAULT_NB_LINKS = 50; /** - * @var LinkDB instance. + * @var \Shaarli\Bookmark\LinkDB instance. */ protected $linkDB; @@ -79,11 +79,12 @@ class FeedBuilder /** * Feed constructor. * - * @param LinkDB $linkDB LinkDB instance. - * @param string $feedType Type of feed. - * @param array $serverInfo $_SERVER. - * @param array $userInput $_GET. - * @param boolean $isLoggedIn True if the user is currently logged in, false otherwise. + * @param \Shaarli\Bookmark\LinkDB $linkDB LinkDB instance. + * @param string $feedType Type of feed. + * @param array $serverInfo $_SERVER. + * @param array $userInput $_GET. + * @param boolean $isLoggedIn True if the user is currently logged in, + * false otherwise. */ public function __construct($linkDB, $feedType, $serverInfo, $userInput, $isLoggedIn) { -- cgit v1.2.3