[TOOLS] Fix errors found by PHPStan
This commit is contained in:
parent
d74a9ad373
commit
c40e38c5ba
|
@ -7,12 +7,12 @@ namespace App\DataFixtures;
|
|||
use App\Core\UserRoles;
|
||||
use App\Core\VisibilityScope;
|
||||
use App\Entity\Actor;
|
||||
use App\Entity\GroupInbox;
|
||||
use App\Entity\GroupMember;
|
||||
use App\Entity\LocalGroup;
|
||||
use App\Entity\LocalUser;
|
||||
use App\Entity\Note;
|
||||
use App\Entity\Subscription;
|
||||
use Component\Group\Entity\GroupInbox;
|
||||
use Component\Group\Entity\GroupMember;
|
||||
use Component\Group\Entity\LocalGroup;
|
||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||
use Doctrine\Persistence\ObjectManager;
|
||||
|
||||
|
|
|
@ -357,7 +357,7 @@ abstract class Formatting
|
|||
$group_matches = self::findMentionsRaw($text, '!');
|
||||
foreach ($group_matches as $group_match) {
|
||||
$nickname = Nickname::normalize($group_match[0], check_already_used: false, check_is_allowed: false);
|
||||
$group = LocalGroup::getActorByNickname($nickname, Actor::GROUP);
|
||||
$group = LocalGroup::getActorByNickname($nickname);
|
||||
|
||||
$mentions[] = [
|
||||
'mentioned' => [$group],
|
||||
|
|
Loading…
Reference in New Issue
Block a user