Skip to content

Commit 0f3ba71

Browse files
author
Sergey Surkov
committed
Update to 1.4.1
1 parent 62fbbfd commit 0f3ba71

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"symbiotic/ui_backend": "1.4.*"
66
},
77
"license": "MIT",
8-
"version": "1.4.0.1",
8+
"version": "1.4.1.1",
99
"autoload": {
1010
"psr-4": {
1111
"Symbiotic\\Develop\\": "src/"

resources/stubs/src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symbiotic\Apps\ApplicationInterface;
1111

1212

13-
class DummyClass extends Application implements ApplicationInterface
13+
class DummyClass extends Application
1414
{
1515
/**
1616
* Тут можно добавить функционал в контейнер вашего приложения

resources/stubs/src/Bootstrap/Bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class DummyClass implements BootstrapInterface
2020
*
2121
* // Сервисы которых может еще не быть, но они доступны сразу после отработки всех бутстраперов
2222
*
23-
* 'apps' => new \Symbiotic\Appss\AppsRepository(), //{@see \Symbiotic\Apps\Bootstrap::bootstrap()}
24-
* 'cache' => new \Symbiotic\SimpleCache\Cache(), // может и не быть пакета
23+
* 'apps' => new \Symbiotic\Apps\AppsRepository(), //{@see \Symbiotic\Apps\Bootstrap::bootstrap()}
24+
* 'cache' => new \Symbiotic\Cache\FilesystemCache(), //{@see \Psr\SimpleCache\CacheInterface}
2525
* 'resources' => new \Symbiotic\Packages\Resources(), //{@see \Symbiotic\Packages\ResourcesBootstrap::bootstrap()}
2626
* 'http_factory' => new \Symbiotic\Http\PsrHttpFactory(), //{@see \Symbiotic\Http\Bootstrap::bootstrap()}
2727
*

src/Routing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function backendRoutes(RouterInterface $router): void
4040
]);
4141

4242
$router->group(['prefix' => '/apps', 'as' => 'apps'], function (RouterInterface $router) {
43-
$router->get('{app_id}/routes', [
43+
$router->get('/{app_id}/routes', [
4444
'uses' => 'Apps@routes',
4545
'as' => 'routes',
4646
]);

0 commit comments

Comments
 (0)