1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Module\Setup;
- /**
- * Replace patterns needed for migration process between Magento versions
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class MigrationData
- {
- /**
- * List of required params
- *
- * @var string[]
- */
- protected $_requiredParams = ['plain', 'wiki', 'xml', 'serialized'];
- /**
- * List of replace patterns
- *
- * @var string[]
- */
- protected $_patterns = [];
- /**
- * @param array $data
- * @throws \InvalidArgumentException
- */
- public function __construct(
- array $data
- ) {
- foreach ($this->_requiredParams as $param) {
- if (!isset($data[$param])) {
- throw new \InvalidArgumentException("Missing required param " . $param);
- }
- $this->_patterns[$param] = $data[$param];
- }
- }
- /**
- * Get replace pattern
- *
- * @return string
- */
- public function getPlainFindPattern()
- {
- return $this->_patterns['plain'];
- }
- /**
- * Get replace pattern
- *
- * @return string
- */
- public function getWikiFindPattern()
- {
- return $this->_patterns['wiki'];
- }
- /**
- * Get replace pattern
- *
- * @return string
- */
- public function getXmlFindPattern()
- {
- return $this->_patterns['xml'];
- }
- /**
- * Get replace pattern
- *
- * @return string
- */
- public function getSerializedFindPattern()
- {
- return $this->_patterns['serialized'];
- }
- }
|