mini\Table\Contracts\MutableTableInterface::getProperty() Method

public abstract

Signature

public abstract function getProperty(string $name): mixed

Parameters

Name Type Default Description
$name string required Documentation missing

Returns

mixed

Documentation

Get a table property

Properties are arbitrary metadata attached to tables. Use hasProperty() to distinguish between "not set" and "set to null".

$table->getProperty('alias');  // 'u' or null

Inherited From

mini\Table\Contracts\TableInterface

Source

src/Table/Contracts/TableInterface.php:353