0
は、サイレックス2.0のクラスのユーザーを無効にする必要があります。サイレックス・過負荷クラスのユーザー
Symfony\Component\Security\Core\User;
私は絶対にどのように表示されません。 私の究極の目標は、メソッドをオーバーロードすることです:
final class User implements AdvancedUserInterface
{
/**
* {@inheritdoc}
*/
public function getRoles()
{
return unserialize($this->roles[0]); // work (overload)
return $this->roles; // Not work (delete)
}
}
はあなたにこれを行うにはどのように任意のアイデアをお持ちですか?
ありがとうございました!
このクラスをオーバーライドする際の問題点は何ですか? –
[GitHub](https://github.com/silexphp/Silex/issues/1436)に関する同じ質問 – GromNaN