![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/dev/tests/setup-integration/framework/Magento/TestFramework/Deploy/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\TestFramework\Deploy; use Magento\Framework\App\ResourceConnection; /** * The purpose of this class is to describe what data is in table */ class TableData { /** * @var ResourceConnection */ private $resourceConnection; /** * TableData constructor. * @param ResourceConnection $resourceConnection */ public function __construct(ResourceConnection $resourceConnection) { $this->resourceConnection = $resourceConnection; } /** * @param string $tableName * @param string $columnName * @return array */ public function describeTableData($tableName, $columnName = null) { $adapter = $this->resourceConnection->getConnection(); $cols = $columnName ?: '*'; $select = $adapter ->select() ->from($tableName, $cols); return $columnName ? $adapter->fetchCol($select) : $adapter->fetchAll($select); } }