/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/src/Utility
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/src/Utility/SubsetSchemaCollection.php (2032B)
collection = $collection;
$this->tables = $tables;
}
/**
* Get the wrapped collection
*
* @return \Cake\Database\Schema\CollectionInterface
*/
public function getInnerCollection(): CollectionInterface
{
return $this->collection;
}
/**
* Get the list of tables in this schema collection.
*
* @return string[]
*/
public function listTables(): array
{
return $this->tables;
}
/**
* @inheritDoc
*/
public function describe(string $name, array $options = []): TableSchemaInterface
{
return $this->collection->describe($name, $options);
}
}