File path: dist/twist/Core/Models/Database/TableStructure.model.php
Namespace: Twist\Core\Models\Database
__construct
— Construct the class with all the required data to make usable
Name | Description |
---|---|
$strDatabase | n/a |
$strTable | n/a |
[$arrStructure = array()] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strDatabase = 'foo';
$strTable = 'foo';
$arrStructure = array();
//Call the function __construct with the example vars
$resTableStructure = new \Twist\Core\Models\Database\TableStructure();
$resTableStructure -> __construct($strDatabase, $strTable, $arrStructure);