/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Model/CryptKeyGeneratorInterface.php
22 строки
400 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2017 Adobe * All Rights Reserved. */ namespace Magento\Setup\Model; /** * Interface for crypt key generators. */ interface CryptKeyGeneratorInterface { /** * Generates & returns a string to be used as crypt key. * * The key length is not a parameter, but an implementation detail. * * @return string */ public function generate(); }