From 658d5ae84dd0851b4a72ac0f5ae8191df2591ba4 Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 12 Dec 2016 18:43:23 +0100 Subject: [PATCH] Fix style-ci errors --- lib/Configuration.php | 3 ++- lib/Data/AbstractData.php | 3 ++- lib/Data/Database.php | 3 ++- lib/Data/Filesystem.php | 3 ++- lib/Filter.php | 3 ++- lib/I18n.php | 3 ++- lib/Json.php | 3 ++- lib/Model.php | 3 ++- lib/Model/AbstractModel.php | 3 ++- lib/Model/Comment.php | 3 ++- lib/Model/Paste.php | 3 ++- lib/Persistence/AbstractPersistence.php | 3 ++- lib/Persistence/PurgeLimiter.php | 3 ++- lib/Persistence/ServerSalt.php | 3 ++- lib/Persistence/TrafficLimiter.php | 3 ++- lib/PrivateBin.php | 3 ++- lib/Request.php | 3 ++- lib/Sjcl.php | 3 ++- lib/View.php | 3 ++- lib/Vizhash16x16.php | 3 ++- 20 files changed, 40 insertions(+), 20 deletions(-) diff --git a/lib/Configuration.php b/lib/Configuration.php index 0024701..9249a74 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use Exception; use PDO; diff --git a/lib/Data/AbstractData.php b/lib/Data/AbstractData.php index 20008ab..95b4039 100644 --- a/lib/Data/AbstractData.php +++ b/lib/Data/AbstractData.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Data; + +namespace PrivateBin;\Data; use stdClass; diff --git a/lib/Data/Database.php b/lib/Data/Database.php index 601c8f6..bea75f2 100644 --- a/lib/Data/Database.php +++ b/lib/Data/Database.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Data; + +namespace PrivateBin;\Data; use Exception; use PDO; diff --git a/lib/Data/Filesystem.php b/lib/Data/Filesystem.php index 37f7986..1a371e8 100644 --- a/lib/Data/Filesystem.php +++ b/lib/Data/Filesystem.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Data; + +namespace PrivateBin;\Data; use PrivateBin\Json; use PrivateBin\Model\Paste; diff --git a/lib/Filter.php b/lib/Filter.php index 0ca1b1d..141c3ce 100644 --- a/lib/Filter.php +++ b/lib/Filter.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use Exception; diff --git a/lib/I18n.php b/lib/I18n.php index 9410198..60dbdd4 100644 --- a/lib/I18n.php +++ b/lib/I18n.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; /** * I18n diff --git a/lib/Json.php b/lib/Json.php index a9ba09c..ec27e6e 100644 --- a/lib/Json.php +++ b/lib/Json.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use Exception; diff --git a/lib/Model.php b/lib/Model.php index 8819d30..e53da6b 100644 --- a/lib/Model.php +++ b/lib/Model.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use PrivateBin\Model\Paste; use PrivateBin\Persistence\PurgeLimiter; diff --git a/lib/Model/AbstractModel.php b/lib/Model/AbstractModel.php index 180e616..38cedfd 100644 --- a/lib/Model/AbstractModel.php +++ b/lib/Model/AbstractModel.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Model; + +namespace PrivateBin;\Model; use Exception; use PrivateBin\Configuration; diff --git a/lib/Model/Comment.php b/lib/Model/Comment.php index c4a7dd5..39d7873 100644 --- a/lib/Model/Comment.php +++ b/lib/Model/Comment.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Model; + +namespace PrivateBin;\Model; use Exception; use Identicon\Identicon; diff --git a/lib/Model/Paste.php b/lib/Model/Paste.php index 2502a4f..0ee3232 100644 --- a/lib/Model/Paste.php +++ b/lib/Model/Paste.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Model; + +namespace PrivateBin;\Model; use Exception; use PrivateBin\Persistence\ServerSalt; diff --git a/lib/Persistence/AbstractPersistence.php b/lib/Persistence/AbstractPersistence.php index c52024b..7ec98ca 100644 --- a/lib/Persistence/AbstractPersistence.php +++ b/lib/Persistence/AbstractPersistence.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Persistence; + +namespace PrivateBin;\Persistence; use Exception; diff --git a/lib/Persistence/PurgeLimiter.php b/lib/Persistence/PurgeLimiter.php index a5111db..90bc17c 100644 --- a/lib/Persistence/PurgeLimiter.php +++ b/lib/Persistence/PurgeLimiter.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Persistence; + +namespace PrivateBin;\Persistence; use PrivateBin\Configuration; diff --git a/lib/Persistence/ServerSalt.php b/lib/Persistence/ServerSalt.php index 0b3c790..734d037 100644 --- a/lib/Persistence/ServerSalt.php +++ b/lib/Persistence/ServerSalt.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Persistence; + +namespace PrivateBin;\Persistence; use Exception; diff --git a/lib/Persistence/TrafficLimiter.php b/lib/Persistence/TrafficLimiter.php index 2545b28..e752a0c 100644 --- a/lib/Persistence/TrafficLimiter.php +++ b/lib/Persistence/TrafficLimiter.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin\Persistence; + +namespace PrivateBin;\Persistence; use PrivateBin\Configuration; diff --git a/lib/PrivateBin.php b/lib/PrivateBin.php index 67d1f19..54c296a 100644 --- a/lib/PrivateBin.php +++ b/lib/PrivateBin.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use Exception; use PrivateBin\Persistence\ServerSalt; diff --git a/lib/Request.php b/lib/Request.php index 59471f7..143b604 100644 --- a/lib/Request.php +++ b/lib/Request.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; /** * Request diff --git a/lib/Sjcl.php b/lib/Sjcl.php index 6942587..5ed16fc 100644 --- a/lib/Sjcl.php +++ b/lib/Sjcl.php @@ -9,7 +9,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; /** * Sjcl diff --git a/lib/View.php b/lib/View.php index 494bcd5..6f8fdb7 100644 --- a/lib/View.php +++ b/lib/View.php @@ -9,7 +9,8 @@ * @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; use Exception; diff --git a/lib/Vizhash16x16.php b/lib/Vizhash16x16.php index 265c3e9..282dac7 100644 --- a/lib/Vizhash16x16.php +++ b/lib/Vizhash16x16.php @@ -10,7 +10,8 @@ * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License * @version 0.0.5 beta PrivateBin 1.0 */ -namespace PrivateBin; + +namespace PrivateBin;; /** * Vizhash16x16