Skip to content

Commit c47307e

Browse files
committed
docblock updated
1 parent 335de2b commit c47307e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/TypedArray.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
use InvalidArgumentException;
1616

1717
/**
18-
* Create an array of typed elements.
18+
* Typed Array.
19+
*
20+
* Provide a way for create an array of typed elements with php.
1921
*/
2022
class TypedArray extends ArrayObject
2123
{
@@ -70,6 +72,8 @@ public function __construct(string $type, array $array = [])
7072
/**
7173
* Array style value assignment.
7274
*
75+
* @ignore
76+
*
7377
* @param mixed $index
7478
* @param mixed $newval
7579
*

src/TypedObjectArray.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
use InvalidArgumentException;
1616

1717
/**
18-
* Create an array of typed elements.
18+
* Typed Array.
19+
*
20+
* Provide a way for create an array of typed objects with php.
1921
*/
2022
class TypedObjectArray extends ArrayObject
2123
{
@@ -57,6 +59,8 @@ public function __construct(string $type, array $array = [])
5759
/**
5860
* Array style value assignment.
5961
*
62+
* @ignore
63+
*
6064
* @param mixed $index
6165
* @param mixed $newval
6266
*

0 commit comments

Comments
 (0)