forked from wallabag/wallabag
Migrate to constructor promoted properties
This commit is contained in:
@ -11,11 +11,9 @@ use Wallabag\Helper\CryptoProxy;
|
||||
|
||||
class SiteCredentialFixtures extends Fixture implements DependentFixtureInterface
|
||||
{
|
||||
private CryptoProxy $cryptoProxy;
|
||||
|
||||
public function __construct(CryptoProxy $cryptoProxy)
|
||||
{
|
||||
$this->cryptoProxy = $cryptoProxy;
|
||||
public function __construct(
|
||||
private CryptoProxy $cryptoProxy,
|
||||
) {
|
||||
}
|
||||
|
||||
public function load(ObjectManager $manager): void
|
||||
|
||||
Reference in New Issue
Block a user