diff options
Diffstat (limited to 'main/app/system/Sprinkle/Sprinkle.php')
-rw-r--r-- | main/app/system/Sprinkle/Sprinkle.php | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/main/app/system/Sprinkle/Sprinkle.php b/main/app/system/Sprinkle/Sprinkle.php deleted file mode 100644 index 7a08f35..0000000 --- a/main/app/system/Sprinkle/Sprinkle.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php
-/**
- * UserFrosting (http://www.userfrosting.com)
- *
- * @link https://github.com/userfrosting/UserFrosting
- * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
- */
-
-namespace UserFrosting\System\Sprinkle;
-
-use Interop\Container\ContainerInterface;
-use RocketTheme\Toolbox\Event\EventSubscriberInterface;
-use Slim\App;
-
-/**
- * Sprinkle class
- *
- * Represents a sprinkle (plugin, theme, site, etc), and the code required to boot up that sprinkle.
- *
- * @author Alex Weissman (https://alexanderweissman.com)
- */
-class Sprinkle implements EventSubscriberInterface
-{
- /**
- * @var ContainerInterface The global container object, which holds all your services.
- */
- protected $ci;
-
- /**
- * By default assign all methods as listeners using the default priority.
- *
- * @return array
- */
- public static function getSubscribedEvents() {
- $methods = get_class_methods(get_called_class());
-
- $list = [];
- foreach ($methods as $method) {
- if (strpos($method, 'on') === 0) {
- $list[$method] = [$method, 0];
- }
- }
-
- return $list;
- }
-
- /**
- * Create a new Sprinkle object.
- *
- * @param ContainerInterface $ci The global container object, which holds all your services.
- */
- public function __construct(ContainerInterface $ci) {
- $this->ci = $ci;
- }
-}
|