Skip to content

Commit bbe603b

Browse files
committed
Add docstrings to functions
1 parent 14ca832 commit bbe603b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Domain/Subscription/Service/Manager/DynamicListAttrTablesManager.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ public function resolveTableName(string $name, ?AttributeTypeEnum $type): ?strin
4545
return $candidate;
4646
}
4747

48+
/**
49+
* Creates an option table dynamically if it does not already exist.
50+
*
51+
* Dispatches a {@see DynamicTableMessage} through the message bus to handle
52+
* creation of the specified table with the given name and prefix.
53+
*
54+
* @param string $listTable The base name of the list table to ensure exists.
55+
*
56+
* @return void
57+
*/
4858
public function createOptionsTableIfNotExists(string $listTable): void
4959
{
5060
$fullTableName = $this->prefix . $listTable;

0 commit comments

Comments
 (0)