diff options
Diffstat (limited to 'src/Components/Array2d.php')
-rw-r--r-- | src/Components/Array2d.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Components/Array2d.php b/src/Components/Array2d.php index c53c8be..c616fdb 100644 --- a/src/Components/Array2d.php +++ b/src/Components/Array2d.php @@ -118,4 +118,14 @@ class Array2d extends Component --$list->idx; return $ret; } + + /** + * @param ArrayObj[] $component The component to be built. + * + * @return string + */ + public static function build($component) + { + return ArrayObj::build($component); + } } |