thomascorthals

Results 55 comments of thomascorthals

I'm experiencing something similar when modifying array items by reference. https://phpstan.org/r/50180988-7365-4fbe-ad52-d729170b397c ```php

I went through the same stages you did. > Also, https://docs.phpdoc.org/latest/phpdoc.xsd gives a nice 404. At least it now points to https://github.com/phpDocumentor/phpDocumentor/blob/master/data/xsd/phpdoc.xsd.

> I still get a 404. I meant to say that https://docs.phpdoc.org/3.0/guide/getting-started/configuration.html now links to https://github.com/phpDocumentor/phpDocumentor/blob/master/data/xsd/phpdoc.xsd and that link should work.

A how-to would be much appreciated! I've tried to get this minimal example working: ```yml name: Run Tests on: push: jobs: run-tests: runs-on: ubuntu-latest strategy: matrix: php: [7.4] name: PHP...

I'm trying to integrate phpDocumentor in a workflow as a Github action and I ran into the same issue. Even when errors are reported, the build step is marked as...

> i don't really get the coverage decrease of 0.01%... It's the -4 hits. There's also -4 lines that must have been hits before you removed them. Fewer hits in...

Solarium 6.0 ~will deprecate the Curl adapter in favour of~ **added** a PSR-18 compatible implementation as described in #550. [PSR-18](https://www.php-fig.org/psr/psr-18/#error-handling) states: > A Client MUST NOT treat a well-formed HTTP...

> I can fix it if i call inside Curl adapter: > > ``` > curl_setopt($handler, CURLOPT_FAILONERROR, true); > ``` > > but i dont know about negative impact on...

[Optimistic Concurrency](https://solr.apache.org/guide/solr/latest/indexing-guide/partial-document-updates.html#optimistic-concurrency) is another case where you don't want a failover on a 409 status.

The Solr-Style JSON representation of documents is done in my fork: https://github.com/thomascorthals/solarium/tree/json. Can't open a PR yet because it needs #994 merged to pass the unit tests for the representation...