Randy Schütt
Randy Schütt
> It's the same reason why the same error is reported here: https://phpstan.org/r/a1b566b9-6ed4-46e8-b6b1-db5cf4cf205a > > PHPStan wants you to use `default` instead of `$t instanceof B` there (only in case...
My point is, since there are no attributes, it shouldn't be serialized as an object. Currently I'm using _quickxml_to_serde_ to avoid this problem: ```rust let value = quickxml_to_serde::xml_string_to_json(xml.to_string()); dbg!(&value); ```...
Solved it somehow by using `@master` instead of `@v1`
> Does `secrets: inherit` solve this issue? Works for me but I'm not using it with Environments. > > https://github.blog/changelog/2022-05-03-github-actions-simplify-using-secrets-with-reusable-workflows/ > > https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idsecretsinherit No I tried to use that and...
No, I guess the problem is that the sort parameter (like everything else except the body) is send in the query. If sort is present, it should be sent in...
I'm using the client with an array like in your tests. 🙂 ```php $client = OpenSearch\ClientBuilder::create()->setHosts(["localhost:1"])->setRetries(0)->build(); $searchParams = [ 'index' => 'test', "sort" =>"rating:desc,price:asc", 'body' => [ 'query' => [...
Yes, I can do that. But I use static code analyzers so they do that for me. Because often I don't see these kinds of errors. Phan has just fixed...
> But PHPStan cannot report anything if we have two required arguments and the non-empty general array guarantees only one. Well, it would be a start if phpstan could find...
SIFT is using C++11/C++14 features which apparently aren't supported from your current IDE. I recommend [Clion](https://www.jetbrains.com/clion/). A cmake file is already there: https://github.com/snowiow/SIFT/blob/master/CMakeLists.txt
It seems that you don't have all needed lib-files. @snowiow Are those lib files public?