Skip to content

Commit

Permalink
fix(admin): Fix block comments of Tabulator input
Browse files Browse the repository at this point in the history
  • Loading branch information
mcaskill committed Mar 11, 2024
1 parent e582431 commit d86a2b7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/admin/src/Charcoal/Admin/Property/Input/TabulatorInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ class TabulatorInput extends AbstractPropertyInput
private ?array $tabulatorOptions = null;

/**
* Set the color input's options.
* Set the input's options.
*
* This method always merges default options.
*
* @param array<string, mixed> $options The color input options.
* @param array<string, mixed> $options The input options.
*/
public function setInputOptions(array $options): self
{
Expand All @@ -37,9 +37,9 @@ public function setInputOptions(array $options): self
}

/**
* Merge (replacing or adding) color input options.
* Merge (replacing or adding) input options.
*
* @param array<string, mixed> $options The color input options.
* @param array<string, mixed> $options The input options.
*/
public function mergeInputOptions(array $options): self
{
Expand All @@ -54,7 +54,7 @@ public function mergeInputOptions(array $options): self
}

/**
* Add (or replace) a tabulator input option.
* Add (or replace) an input option.
*
* @param string $key The setting to add/replace.
* @param mixed $val The setting's value to apply.
Expand All @@ -75,7 +75,7 @@ public function addInputOption(string $key, $val): self
}

/**
* Retrieve the default color input options.
* Retrieve the default input options.
*
* @return array<string, mixed>
*/
Expand All @@ -99,11 +99,11 @@ public function getDefaultInputOptions(): array
}

/**
* Set the color tabulator's options.
* Set the Tabulator's options.
*
* This method always merges default options.
*
* @param array<string, mixed> $options The color tabulator options.
* @param array<string, mixed> $options The Tabulator options.
*/
public function setTabulatorOptions(array $options): self
{
Expand All @@ -113,9 +113,9 @@ public function setTabulatorOptions(array $options): self
}

/**
* Merge (replacing or adding) color tabulator options.
* Merge (replacing or adding) Tabulator options.
*
* @param array<string, mixed> $options The color tabulator options.
* @param array<string, mixed> $options The Tabulator options.
*/
public function mergeTabulatorOptions(array $options): self
{
Expand All @@ -130,7 +130,7 @@ public function mergeTabulatorOptions(array $options): self
}

/**
* Add (or replace) a tabulator option.
* Add (or replace) a Tabulator option.
*
* @param string $key The setting to add/replace.
* @param mixed $val The setting's value to apply.
Expand All @@ -146,7 +146,7 @@ public function addTabulatorOption(string $key, $val): self
}

/**
* Retrieve the color tabulator's options.
* Retrieve the Tabulator's options.
*
* @return array<string, mixed>
*/
Expand All @@ -160,7 +160,7 @@ public function getTabulatorOptions(): array
}

/**
* Retrieve the default color tabulator options.
* Retrieve the default Tabulator options.
*
* @return array<string, mixed>
*/
Expand Down

0 comments on commit d86a2b7

Please sign in to comment.