We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee3bdb commit 1212dc8Copy full SHA for 1212dc8
App/EvolvStore.php
@@ -389,7 +389,7 @@ private function updateGenome(array $value)
389
$this->genomeKeyStates['experiments'][$clean['eid']] = &$expMap;
390
391
$keys = flattenKeys($alloc['genome'], function ($key) {
392
- return !startsWith($key, '_');
+ return is_string($key) && !startsWith($key, '_');
393
});
394
395
foreach ($keys as $key) {
composer.json
@@ -2,7 +2,7 @@
2
"name": "evolv/php-sdk",
3
"description": "This is the official PHP client for the Evolv AI optimization platform.",
4
"type": "library",
5
- "version": "1.0.4",
+ "version": "1.0.5",
6
"require-dev": {
7
"phpunit/phpunit": "^9.5",
8
"phpdocumentor/phpdocumentor": "v3.1.2",
0 commit comments