From a6802d093ac2a8da518a406e253068f3f14cd07f Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 20 Sep 2016 11:06:52 +0200 Subject: [PATCH] Fix more Settings instantiations --- nntmux/AniDB.php | 2 +- nntmux/Category.php | 2 +- nntmux/CollectionsCleaning.php | 2 +- nntmux/Contents.php | 2 +- nntmux/DnzbFailures.php | 2 +- nntmux/Genres.php | 2 +- nntmux/Groups.php | 2 +- nntmux/NZBExport.php | 2 +- nntmux/NameFixer.php | 2 +- nntmux/Regexes.php | 2 +- nntmux/ReleaseCleaning.php | 2 +- nntmux/ReleaseExtra.php | 2 +- nntmux/ReleaseFiles.php | 2 +- nntmux/ReleaseRemover.php | 2 +- nntmux/RequestID.php | 2 +- nntmux/Sharing.php | 2 +- nntmux/Sites.php | 2 +- nntmux/UserMovies.php | 2 +- nntmux/UserSeries.php | 2 +- nntmux/db/populate/PopulateTitles.php | 2 +- nntmux/http/API.php | 2 +- nntmux/http/RSS.php | 2 +- nntmux/processing/Videos.php | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/nntmux/AniDB.php b/nntmux/AniDB.php index f13700ef8..247214443 100755 --- a/nntmux/AniDB.php +++ b/nntmux/AniDB.php @@ -6,7 +6,7 @@ use nntmux\db\DB; class AniDB { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/Category.php b/nntmux/Category.php index f556eecdc..fff551408 100644 --- a/nntmux/Category.php +++ b/nntmux/Category.php @@ -107,7 +107,7 @@ class Category private $tmpCat = 0; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/CollectionsCleaning.php b/nntmux/CollectionsCleaning.php index 1844b8269..1f7601116 100644 --- a/nntmux/CollectionsCleaning.php +++ b/nntmux/CollectionsCleaning.php @@ -58,7 +58,7 @@ class CollectionsCleaning public $subject = ''; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/Contents.php b/nntmux/Contents.php index f289a3ee5..a2584090b 100644 --- a/nntmux/Contents.php +++ b/nntmux/Contents.php @@ -10,7 +10,7 @@ class Contents const TYPEINDEX = 3; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/DnzbFailures.php b/nntmux/DnzbFailures.php index e2a769dcf..3118e734e 100644 --- a/nntmux/DnzbFailures.php +++ b/nntmux/DnzbFailures.php @@ -11,7 +11,7 @@ use nntmux\db\DB; class DnzbFailures { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/Genres.php b/nntmux/Genres.php index 9521b66b6..653261c13 100644 --- a/nntmux/Genres.php +++ b/nntmux/Genres.php @@ -13,7 +13,7 @@ class Genres const STATUS_DISABLED = 1; /** - * @var \nntmux\db\DB; + * @var \nntmux\db\Settings; */ public $pdo; diff --git a/nntmux/Groups.php b/nntmux/Groups.php index 78254a5aa..a96570e1f 100644 --- a/nntmux/Groups.php +++ b/nntmux/Groups.php @@ -6,7 +6,7 @@ use nntmux\db\DB; class Groups { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/NZBExport.php b/nntmux/NZBExport.php index 22185a861..6cce0ae0d 100644 --- a/nntmux/NZBExport.php +++ b/nntmux/NZBExport.php @@ -24,7 +24,7 @@ class NZBExport protected $retVal; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings * @access protected */ protected $pdo; diff --git a/nntmux/NameFixer.php b/nntmux/NameFixer.php index ebe4b2a1b..27465192f 100755 --- a/nntmux/NameFixer.php +++ b/nntmux/NameFixer.php @@ -108,7 +108,7 @@ class NameFixer protected $fullall; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/Regexes.php b/nntmux/Regexes.php index abeff2360..e47c8c0b9 100644 --- a/nntmux/Regexes.php +++ b/nntmux/Regexes.php @@ -6,7 +6,7 @@ use nntmux\db\DB; class Regexes { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/ReleaseCleaning.php b/nntmux/ReleaseCleaning.php index c8dd2420f..94cc1077c 100644 --- a/nntmux/ReleaseCleaning.php +++ b/nntmux/ReleaseCleaning.php @@ -58,7 +58,7 @@ class ReleaseCleaning public $groupName = ''; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/ReleaseExtra.php b/nntmux/ReleaseExtra.php index 93d3efaf3..29356cc66 100644 --- a/nntmux/ReleaseExtra.php +++ b/nntmux/ReleaseExtra.php @@ -7,7 +7,7 @@ use nntmux\utility\Utility; class ReleaseExtra { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/ReleaseFiles.php b/nntmux/ReleaseFiles.php index bf5d4de6b..9bdf72cca 100644 --- a/nntmux/ReleaseFiles.php +++ b/nntmux/ReleaseFiles.php @@ -9,7 +9,7 @@ use nntmux\db\DB; class ReleaseFiles { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ protected $pdo; diff --git a/nntmux/ReleaseRemover.php b/nntmux/ReleaseRemover.php index 3e4cec055..33199fef8 100644 --- a/nntmux/ReleaseRemover.php +++ b/nntmux/ReleaseRemover.php @@ -72,7 +72,7 @@ class ReleaseRemover protected $method = ''; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ protected $pdo; diff --git a/nntmux/RequestID.php b/nntmux/RequestID.php index b87c2871b..a51f87be0 100644 --- a/nntmux/RequestID.php +++ b/nntmux/RequestID.php @@ -163,7 +163,7 @@ abstract class RequestID protected $category; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ protected $pdo; diff --git a/nntmux/Sharing.php b/nntmux/Sharing.php index fe1ab8aa7..a5a5a3598 100644 --- a/nntmux/Sharing.php +++ b/nntmux/Sharing.php @@ -46,7 +46,7 @@ Class Sharing */ /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ protected $pdo; diff --git a/nntmux/Sites.php b/nntmux/Sites.php index d2c3adcb1..3ea60931d 100644 --- a/nntmux/Sites.php +++ b/nntmux/Sites.php @@ -23,7 +23,7 @@ class Sites const ERR_SABCOMPLETEPATH = -8; /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ protected $_db; diff --git a/nntmux/UserMovies.php b/nntmux/UserMovies.php index e60f7e56f..c0c33ff50 100644 --- a/nntmux/UserMovies.php +++ b/nntmux/UserMovies.php @@ -9,7 +9,7 @@ use nntmux\db\DB; class UserMovies { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/UserSeries.php b/nntmux/UserSeries.php index b44da4d9b..08669dd8a 100755 --- a/nntmux/UserSeries.php +++ b/nntmux/UserSeries.php @@ -11,7 +11,7 @@ use nntmux\db\DB; class UserSeries { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/db/populate/PopulateTitles.php b/nntmux/db/populate/PopulateTitles.php index 9348eef02..57673dd18 100644 --- a/nntmux/db/populate/PopulateTitles.php +++ b/nntmux/db/populate/PopulateTitles.php @@ -26,7 +26,7 @@ use nntmux\utility\Utility; class PopulateTitles { /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/http/API.php b/nntmux/http/API.php index c9ed8d1ad..f25a23d4f 100755 --- a/nntmux/http/API.php +++ b/nntmux/http/API.php @@ -33,7 +33,7 @@ use nntmux\Groups; class API extends Capabilities { /** DB class - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/http/RSS.php b/nntmux/http/RSS.php index 3c19fe3f3..9dcd1ec59 100755 --- a/nntmux/http/RSS.php +++ b/nntmux/http/RSS.php @@ -20,7 +20,7 @@ Class RSS extends Capabilities public $releases; /** DB class - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo; diff --git a/nntmux/processing/Videos.php b/nntmux/processing/Videos.php index 673f5c0c8..b2b3feb1c 100644 --- a/nntmux/processing/Videos.php +++ b/nntmux/processing/Videos.php @@ -35,7 +35,7 @@ abstract class Videos const TYPE_ANIME = 2; // Type of video is a Anime /** - * @var \nntmux\db\DB + * @var \nntmux\db\Settings */ public $pdo;