1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Setup\Declaration\Schema\Dto;
- use Magento\Framework\App\ResourceConnection;
- /**
- * Schema DTO element.
- *
- * Aggregation root for all structural elements. Provides access to tables by their names.
- */
- class Schema
- {
- /**
- * Resource connection.
- *
- * @var ResourceConnection
- */
- private $resourceConnection;
- /**
- * Schema tables.
- *
- * @var Table[]
- */
- private $tables;
- /**
- * Schema constructor.
- *
- * @param ResourceConnection $resourceConnection
- */
- public function __construct(ResourceConnection $resourceConnection)
- {
- $this->resourceConnection = $resourceConnection;
- $this->tables = [];
- }
- /**
- * Retrieve all tables, that are presented in schema.
- *
- * @return Table[]
- */
- public function getTables()
- {
- return $this->tables;
- }
- /**
- * Add table by name key to tables registry.
- *
- * @param Table $table
- * @return $this
- */
- public function addTable(Table $table)
- {
- $this->tables[$table->getName()] = $table;
- return $this;
- }
- /**
- * Retrieve table by it name.
- *
- * Return false if table is not present in schema.
- *
- * @param string $name
- * @return bool|Table
- */
- public function getTableByName($name)
- {
- $name = $this->resourceConnection->getTableName($name);
- return $this->tables[$name] ?? false;
- }
- }
|