mirror of
https://github.com/friendica/friendica
synced 2025-01-18 13:44:28 +00:00
Replace DiceInstanceManager class names with FQCN
This commit is contained in:
parent
7587517499
commit
b4762238ed
1 changed files with 3 additions and 4 deletions
|
@ -22,7 +22,6 @@
|
|||
*/
|
||||
|
||||
use Dice\Dice;
|
||||
use Friendica\Core\Hooks\Model\DiceInstanceManager;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\Lock;
|
||||
use Friendica\Core\Session\Capability\IHandleSessions;
|
||||
|
@ -62,7 +61,7 @@ return (function(array $getVars, array $serverVars): array {
|
|||
$serverVars,
|
||||
]
|
||||
],
|
||||
DiceInstanceManager::class => [
|
||||
\Friendica\Core\Hooks\Model\DiceInstanceManager::class => [
|
||||
'constructParams' => [
|
||||
[Dice::INSTANCE => Dice::SELF],
|
||||
]
|
||||
|
@ -76,7 +75,7 @@ return (function(array $getVars, array $serverVars): array {
|
|||
],
|
||||
],
|
||||
\Friendica\Core\Hooks\Capability\ICanRegisterStrategies::class => [
|
||||
'instanceOf' => DiceInstanceManager::class,
|
||||
'instanceOf' => \Friendica\Core\Hooks\Model\DiceInstanceManager::class,
|
||||
'constructParams' => [
|
||||
[Dice::INSTANCE => Dice::SELF],
|
||||
],
|
||||
|
@ -85,7 +84,7 @@ return (function(array $getVars, array $serverVars): array {
|
|||
'instanceOf' => \Friendica\AppLegacy::class,
|
||||
],
|
||||
\Friendica\Core\Hooks\Capability\ICanCreateInstances::class => [
|
||||
'instanceOf' => DiceInstanceManager::class,
|
||||
'instanceOf' => \Friendica\Core\Hooks\Model\DiceInstanceManager::class,
|
||||
'constructParams' => [
|
||||
[Dice::INSTANCE => Dice::SELF],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue