From a932f486f20f3daf8ad657d8d39a6d6c316e66eb Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Tue, 4 Dec 2018 00:02:17 +0100 Subject: namespacing: \Shaarli\Router Signed-off-by: VirtualTam --- tests/plugins/PluginQrcodeTest.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/plugins/PluginQrcodeTest.php') diff --git a/tests/plugins/PluginQrcodeTest.php b/tests/plugins/PluginQrcodeTest.php index dd632eee..419965eb 100644 --- a/tests/plugins/PluginQrcodeTest.php +++ b/tests/plugins/PluginQrcodeTest.php @@ -3,6 +3,8 @@ * PluginQrcodeTest.php */ +use Shaarli\Router; + require_once 'plugins/qrcode/qrcode.php'; require_once 'application/Router.php'; -- cgit v1.2.3 From e1850388348d4bfdf463a5aa341bc470da79cf32 Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Tue, 4 Dec 2018 00:26:50 +0100 Subject: namespacing: \Shaarli\Plugin\PluginManager Signed-off-by: VirtualTam --- tests/plugins/PluginQrcodeTest.php | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/plugins/PluginQrcodeTest.php') diff --git a/tests/plugins/PluginQrcodeTest.php b/tests/plugins/PluginQrcodeTest.php index 419965eb..325e3109 100644 --- a/tests/plugins/PluginQrcodeTest.php +++ b/tests/plugins/PluginQrcodeTest.php @@ -3,6 +3,7 @@ * PluginQrcodeTest.php */ +use Shaarli\Plugin\PluginManager; use Shaarli\Router; require_once 'plugins/qrcode/qrcode.php'; -- cgit v1.2.3 From 9585441734924cb8ece3924afa5fefb6aa2e2604 Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Tue, 4 Dec 2018 23:17:23 +0100 Subject: namespacing: add plugin tests to \Shaarli\Plugin\[...] Signed-off-by: VirtualTam --- tests/plugins/PluginQrcodeTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/plugins/PluginQrcodeTest.php') diff --git a/tests/plugins/PluginQrcodeTest.php b/tests/plugins/PluginQrcodeTest.php index 325e3109..0c61e14a 100644 --- a/tests/plugins/PluginQrcodeTest.php +++ b/tests/plugins/PluginQrcodeTest.php @@ -1,4 +1,6 @@