Skip to content

Commit

Permalink
Fix Pico compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
PhrozenByte committed Feb 6, 2022
1 parent 7ee890e commit 691b6b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
3 changes: 0 additions & 3 deletions PicoDeprecated.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
* License-Filename: LICENSE
*/

use picocms\Pico\AbstractPlugin as AbstractPicoPlugin;
use picocms\Pico\Pico;
use picocms\Pico\PluginInterface as PicoPluginInterface;
use picocms\PicoDeprecated\Plugin\MainPlugin;
use picocms\PicoDeprecated\PluginApiPluginInterface;
use picocms\PicoDeprecated\PluginInterface;
Expand Down
9 changes: 4 additions & 5 deletions lib/AbstractPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,16 @@

namespace picocms\PicoDeprecated;

use picocms\Pico\Pico;
use PicoDeprecated;

/**
* Abstract class to extend from when implementing a PicoDeprecated
* compatibility plugin
*
* Please refer to {@see PluginInterface} for more information about how to
* Please refer to {@see PicoPluginInterface} for more information about how to
* develop a PicoDeprecated compatibility plugin.
*
* @see PluginInterface
* @see PicoPluginInterface
*
* @author Daniel Rudolf
* @link http://picocms.org
Expand All @@ -34,7 +33,7 @@ abstract class AbstractPlugin implements PluginInterface
/**
* Current instance of Pico
*
* @see PluginInterface::getPico()
* @see PicoPluginInterface::getPico()
*
* @var Pico
*/
Expand All @@ -52,7 +51,7 @@ abstract class AbstractPlugin implements PluginInterface
/**
* List of plugins which this plugin depends on
*
* @see PluginInterface::getDependencies()
* @see PicoPluginInterface::getDependencies()
*
* @var string[]
*/
Expand Down
1 change: 0 additions & 1 deletion lib/PluginInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

namespace picocms\PicoDeprecated;

use picocms\Pico\Pico;
use PicoDeprecated;

/**
Expand Down
1 change: 0 additions & 1 deletion plugins/PluginApi0Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

namespace picocms\PicoDeprecated\Plugin;

use picocms\Pico\Pico;
use picocms\PicoDeprecated\AbstractPluginApiPlugin;
use PicoDeprecated;
use Twig\Environment as TwigEnvironment;
Expand Down

0 comments on commit 691b6b4

Please sign in to comment.