| 1 | <?php |
||
| 20 | class ConfigProvider implements ConfigProviderInterface |
||
| 21 | { |
||
| 22 | const XML_PATH_CLEANUP_AFTER = 'password_migrator/general/cleanup'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var ScopeConfigInterface |
||
| 26 | */ |
||
| 27 | private $scopeConfig; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * ConfigProvider constructor. |
||
| 31 | * @param ScopeConfigInterface $scopeConfig |
||
| 32 | */ |
||
| 33 | public function __construct( |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return int |
||
| 41 | */ |
||
| 42 | public function getCleanupAfter(): int |
||
| 46 | } |
||
| 47 |