mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fixed spelling and changed to shorthand array
This commit is contained in:
parent
a380cc7444
commit
efdd359485
@ -37,14 +37,14 @@ class ArrayData extends ViewableData
|
||||
if (ArrayLib::is_associative($value)) {
|
||||
$this->array = $value;
|
||||
} elseif (count($value) === 0) {
|
||||
$this->array = array();
|
||||
$this->array = [];
|
||||
} else {
|
||||
$message = 'Parameter to ArrayData constructor needs to be an object or associative array,
|
||||
enumareted array passed instead. Did you mean to use ArrayList?';
|
||||
$message = 'ArrayData constructor expects an object or associative array,
|
||||
enumerated array passed instead. Did you mean to use ArrayList?';
|
||||
throw new InvalidArgumentException($message);
|
||||
}
|
||||
} else {
|
||||
$message = 'Parameter to ArrayData constructor needs to be an object or associative array';
|
||||
$message = 'ArrayData constructor expects an object or associative array';
|
||||
throw new InvalidArgumentException($message);
|
||||
}
|
||||
parent::__construct();
|
||||
|
Loading…
Reference in New Issue
Block a user