diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-04 23:17:23 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 23:11:19 +0100 |
commit | 9585441734924cb8ece3924afa5fefb6aa2e2604 (patch) | |
tree | 9e62a09ab770101172054136d0e6d489601bc862 /plugins/wallabag | |
parent | e1850388348d4bfdf463a5aa341bc470da79cf32 (diff) | |
download | Shaarli-9585441734924cb8ece3924afa5fefb6aa2e2604.tar.gz Shaarli-9585441734924cb8ece3924afa5fefb6aa2e2604.tar.zst Shaarli-9585441734924cb8ece3924afa5fefb6aa2e2604.zip |
namespacing: add plugin tests to \Shaarli\Plugin\[...]
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'plugins/wallabag')
-rw-r--r-- | plugins/wallabag/WallabagInstance.php | 1 | ||||
-rw-r--r-- | plugins/wallabag/wallabag.php | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wallabag/WallabagInstance.php b/plugins/wallabag/WallabagInstance.php index eb8ab618..f4a0a92b 100644 --- a/plugins/wallabag/WallabagInstance.php +++ b/plugins/wallabag/WallabagInstance.php | |||
@@ -1,4 +1,5 @@ | |||
1 | <?php | 1 | <?php |
2 | namespace Shaarli\Plugin\Wallabag; | ||
2 | 3 | ||
3 | /** | 4 | /** |
4 | * Class WallabagInstance. | 5 | * Class WallabagInstance. |
diff --git a/plugins/wallabag/wallabag.php b/plugins/wallabag/wallabag.php index 5ba1611d..bc35df08 100644 --- a/plugins/wallabag/wallabag.php +++ b/plugins/wallabag/wallabag.php | |||
@@ -1,12 +1,11 @@ | |||
1 | <?php | 1 | <?php |
2 | |||
3 | /** | 2 | /** |
4 | * Plugin Wallabag. | 3 | * Wallabag plugin |
5 | */ | 4 | */ |
6 | 5 | ||
7 | require_once 'WallabagInstance.php'; | ||
8 | use Shaarli\Config\ConfigManager; | 6 | use Shaarli\Config\ConfigManager; |
9 | use Shaarli\Plugin\PluginManager; | 7 | use Shaarli\Plugin\PluginManager; |
8 | use Shaarli\Plugin\Wallabag\WallabagInstance; | ||
10 | 9 | ||
11 | /** | 10 | /** |
12 | * Init function, return an error if the server is not set. | 11 | * Init function, return an error if the server is not set. |