Skip to content

Commit 718d333

Browse files
committed
Use array() instead of []
1 parent 3db1a07 commit 718d333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Enum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public static function keys()
9090
*/
9191
public static function values()
9292
{
93-
$values = [];
93+
$values = array();
9494

9595
foreach (self::toArray() as $key => $value) {
9696
$values[$key] = new static($value);

0 commit comments

Comments
 (0)