Skip to content
Snippets Groups Projects
Commit 1ce9a0cd authored by Tyler Antonio's avatar Tyler Antonio
Browse files

Use count() instead of empty().

Cannot provide array_filter() output directly to empty() in conditional in PHP <= 5.4.
parent 6e332225
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ class Metadata
// check attributes is an associative array
if (isset($contact['attributes'])) {
if (empty($contact['attributes']) || !is_array($contact['attributes']) || empty(array_filter(array_keys($contact['attributes']), 'is_string'))) {
if (empty($contact['attributes']) || !is_array($contact['attributes']) || count(array_filter(array_keys($contact['attributes']), 'is_string')) == 0) {
throw new \InvalidArgumentException('"attributes" must be an array and cannot be empty.');
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment