我正在嘗試在Fixtures類別中自動組裝PasswordHasherInterface:
<?php namespace AppDataFixtures; use AppModelUserEntityUserEmail; use AppModelUserEntityUserId; use AppModelUserEntityUserRole; use AppModelUserEntityUserUser; use DoctrineBundleFixturesBundleFixture; use DoctrinePersistenceObjectManager; use SymfonyComponentPasswordHasherPasswordHasherInterface; class UserFixture extends Fixture { private PasswordHasherInterface $hasher; public function __construct(PasswordHasherInterface $hasher) { $this->hasher = $hasher; } public function load(ObjectManager $manager): void { $hash = $this->hasher->hash("password"); $user = User::signUpByEmail( Id::next(), new DateTimeImmutable(), new Email("admin@app.test"), $hash, "token" ); $user->confirmSignUp(); $user->changeRole(Role::admin()); $manager->persist($user); $manager->flush(); } }
但是我得到了錯誤:
在 DefinitionErrorExceptionPass.php 第 54 行: ! !
!!無法自動組裝服務「AppDataFixturesUserFixture」:參數「$hasher」
# !!方法「__construct()」引用介面「SymfonyComponentPasswordH
# !! asherPasswordHasherInterface”,但不存在此類服務。您是否創建了
# !!實作這個介面的類別?
! !
我的檔案 services.yaml:
parameters: services: # default configuration for services in *this* file _defaults: autowire: true # Automatically injects dependencies in your services. autoconfigure: true # Automatically registers your services as commands, event subscribers, etc. # makes classes in src/ available to be used as services # this creates a service per class whose id is the fully-qualified class name App: resource: '../src/' exclude: - '../src/DependencyInjection/' - '../src/Model/User/Entity/' - '../src/Kernel.php'
如何在 Symfony 6.1 中散列純密碼? 為什麼我會收到此錯誤?
沒有通用的
PasswordHasher
。您:
Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface
Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface
對於使用者*。使用工廠,您的程式碼將如下所示:(未經測試)
重申一下,步驟是:
composer require symfony/password-hasher
UserPasswordHasherInterface
或PasswordHasherFactoryInterface
(請參閱範例)並取得PasswordHasher
*:修正程式的
UserPasswordHasherInterface
範例位於 此處。