]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/container/ShaarliContainer.php
Use multi-level routes for existing controllers instead of 1 level everywhere
[github/shaarli/Shaarli.git] / application / container / ShaarliContainer.php
index a95393cd450461fb137ccf24c0814d4ad86d9b81..4b97aae23717482cc8fd0b804c6e7b9290173bb8 100644 (file)
@@ -21,21 +21,20 @@ use Slim\Container;
 /**
  * Extension of Slim container to document the injected objects.
  *
- * @property mixed[]                  $environment     $_SERVER automatically injected by Slim
  * @property string                   $basePath        Shaarli's instance base path (e.g. `/shaarli/`)
+ * @property BookmarkServiceInterface $bookmarkService
  * @property ConfigManager            $conf
- * @property SessionManager           $sessionManager
- * @property LoginManager             $loginManager
- * @property string                   $webPath
+ * @property mixed[]                  $environment     $_SERVER automatically injected by Slim
+ * @property FeedBuilder              $feedBuilder
+ * @property FormatterFactory         $formatterFactory
  * @property History                  $history
- * @property BookmarkServiceInterface $bookmarkService
+ * @property HttpAccess               $httpAccess
+ * @property LoginManager             $loginManager
  * @property PageBuilder              $pageBuilder
- * @property PluginManager            $pluginManager
- * @property FormatterFactory         $formatterFactory
  * @property PageCacheManager         $pageCacheManager
- * @property FeedBuilder              $feedBuilder
+ * @property PluginManager            $pluginManager
+ * @property SessionManager           $sessionManager
  * @property Thumbnailer              $thumbnailer
- * @property HttpAccess               $httpAccess
  */
 class ShaarliContainer extends Container
 {