123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestSetupDeclarationModule5\Setup\Patch\Data;
- use Magento\Framework\App\ResourceConnection;
- use Magento\Framework\Setup\Patch\DataPatchInterface;
- use Magento\Framework\Setup\Patch\PatchRevertableInterface;
- use Magento\Framework\Setup\Patch\PatchVersionInterface;
- /**
- * Class SomePatch
- * @package Magento\TestSetupDeclarationModule3\Setup
- */
- class SomePatch implements
- DataPatchInterface,
- PatchRevertableInterface,
- PatchVersionInterface
- {
- /**
- * @var ResourceConnection
- */
- private $resourceConnection;
- /**
- * IncrementalSomeIntegerPatch constructor.
- * @param ResourceConnection $resourceConnection
- */
- public function __construct(ResourceConnection $resourceConnection)
- {
- $this->resourceConnection = $resourceConnection;
- }
- /**
- * @return string
- */
- public static function getVersion()
- {
- return '1.0.5';
- }
- /**
- * @return array
- */
- public function getAliases()
- {
- return [];
- }
- /**
- * @inheritdoc
- */
- public function apply()
- {
- $adapter = $this->resourceConnection->getConnection();
- $adapter->insert('test_table', ['varchar' => "_ref", 'varbinary' => 0101010]);
- }
- public function revert()
- {
- }
- /**
- * @return array
- */
- public static function getDependencies()
- {
- return [];
- }
- }
|