From 9ce41022cf20eb1b7e2c436eb047d315a505a834 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Mon, 19 Nov 2018 13:07:25 +0100 Subject: [PATCH] correcting namespaces --- lib/Data/Filesystem.php | 3 +-- lib/Model.php | 4 ++-- lib/Model/Comment.php | 2 +- lib/Model/Paste.php | 4 ++-- lib/Persistence/DataStore.php | 2 +- lib/Persistence/PurgeLimiter.php | 2 +- lib/Persistence/TrafficLimiter.php | 2 +- 7 files changed, 9 insertions(+), 10 deletions(-) diff --git a/lib/Data/Filesystem.php b/lib/Data/Filesystem.php index 29ceae9..9596d02 100644 --- a/lib/Data/Filesystem.php +++ b/lib/Data/Filesystem.php @@ -12,7 +12,6 @@ namespace PrivateBin\Data; -use PrivateBin\Model\Paste; use PrivateBin\Persistence\DataStore; /** @@ -72,7 +71,7 @@ class Filesystem extends AbstractData * * @access public * @param string $pasteid - * @return stdClass|false + * @return \stdClass|false */ public function read($pasteid) { diff --git a/lib/Model.php b/lib/Model.php index acc77f4..ed35ff0 100644 --- a/lib/Model.php +++ b/lib/Model.php @@ -32,7 +32,7 @@ class Model /** * Data storage. * - * @var AbstractData + * @var Data\AbstractData */ private $_store = null; @@ -75,7 +75,7 @@ class Model /** * Gets, and creates if neccessary, a store object * - * @return AbstractData + * @return Data\AbstractData */ private function _getStore() { diff --git a/lib/Model/Comment.php b/lib/Model/Comment.php index d20fa2a..101335c 100644 --- a/lib/Model/Comment.php +++ b/lib/Model/Comment.php @@ -38,7 +38,7 @@ class Comment extends AbstractModel * * @access public * @throws Exception - * @return stdClass + * @return \stdClass */ public function get() { diff --git a/lib/Model/Paste.php b/lib/Model/Paste.php index 1beb6e8..3b57b87 100644 --- a/lib/Model/Paste.php +++ b/lib/Model/Paste.php @@ -28,8 +28,8 @@ class Paste extends AbstractModel * Get paste data. * * @access public - * @throws Exception - * @return stdClass + * @throws \Exception + * @return \stdClass */ public function get() { diff --git a/lib/Persistence/DataStore.php b/lib/Persistence/DataStore.php index 7ab4af5..5307811 100644 --- a/lib/Persistence/DataStore.php +++ b/lib/Persistence/DataStore.php @@ -58,7 +58,7 @@ class DataStore extends AbstractPersistence * @access public * @static * @param string $filename - * @return stdClass|false $data + * @return \stdClass|false $data */ public static function get($filename) { diff --git a/lib/Persistence/PurgeLimiter.php b/lib/Persistence/PurgeLimiter.php index 93ea6ca..d54045c 100644 --- a/lib/Persistence/PurgeLimiter.php +++ b/lib/Persistence/PurgeLimiter.php @@ -60,7 +60,7 @@ class PurgeLimiter extends AbstractPersistence * * @access public * @static - * @throws Exception + * @throws \Exception * @return bool */ public static function canPurge() diff --git a/lib/Persistence/TrafficLimiter.php b/lib/Persistence/TrafficLimiter.php index 9b6152c..24fe50a 100644 --- a/lib/Persistence/TrafficLimiter.php +++ b/lib/Persistence/TrafficLimiter.php @@ -90,7 +90,7 @@ class TrafficLimiter extends AbstractPersistence * * @access public * @static - * @throws Exception + * @throws \Exception * @return bool */ public static function canPass()