create-prisma-php-app 1.26.528 → 1.26.529
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -52,10 +52,10 @@ class PHPX implements IPHPX
|
|
|
52
52
|
* only the component's `$class` property will be used. It ensures that there
|
|
53
53
|
* are no duplicate classes and the classes are properly formatted.
|
|
54
54
|
*
|
|
55
|
-
* @param string
|
|
55
|
+
* @param string $baseClass The optional base CSS class to be merged. Defaults to an empty string.
|
|
56
56
|
* @return string The merged CSS class string.
|
|
57
57
|
*/
|
|
58
|
-
protected function getMergeClasses(
|
|
58
|
+
protected function getMergeClasses(string $baseClass = ''): string
|
|
59
59
|
{
|
|
60
60
|
return TwMerge::mergeClasses($baseClass, $this->class);
|
|
61
61
|
}
|