Christophe Coevoet
Christophe Coevoet
PHPUnit Enhancement: 5.1 PHPStorm: 2020.3.2 ``` java.lang.Throwable: Non-idempotent computation: it returns different results when invoked multiple times or on different threads: PhpClass: CaseFunctionTest (class com.jetbrains.php.lang.psi.elements.impl.PhpClassImpl) != PhpClass: ScoreComputerTest (class com.jetbrains.php.lang.psi.elements.impl.PhpClassImpl)...
I'm using version 5.0 of the plugin and PHPStorm 2020.2 ``` com.intellij.diagnostic.PluginException: Intention Description Dir URL is null: PHPUnit; AddMethodIntention; while looking for description.html [Plugin: de.espend.idea.php.phpunit] at com.intellij.codeInsight.intention.impl.config.IntentionActionMetaData.getResourceLocation(IntentionActionMetaData.java:63) at com.intellij.codeInsight.intention.impl.config.BeforeAfterActionMetaData.getDescription(BeforeAfterActionMetaData.java:126)...
Currently, using a Prophecy argument token when writing a Prophecy mock triggers a warning about invalid type. Instead, all magic mock method should have their arguments accepting their original argument...
As this plugin implements the support for Prophecy magic calls, it may be worth using this logic to support PhpSpec collaborators too. I'm not sure it actually belongs to this...
This was forgotten when switching to the native support of multiple buildpacks in 8e0d4c3
This continues the discussion started by @docteurklein in https://github.com/phpspec/phpspec/issues/230#issuecomment-34307600 as he made a valid argument: Take the following spec: ``` php function it_does_something_with_a_token(ArrayToken $token) { $token->getId()->willReturn(1234); $this->foo($token)->shouldReturn(1234); } function it_does_something_special_with_object_token(ObjectToken...
A good example is the feed of thephp.cc which uses `` too provide an extract of the blog post. In the aggregated feed, the summary is removed, making the item...
Objects used in this package are meant to be constructed through named constructors. However, this is not enforced by making the constructor private. And several objects will be broken if...
Currently, the buildpack allows customizing the server context of the nginx config through `nginx-includes`. But there is no way to customize the http context (for instance to change the log...
Unless I missed something, the buildpack does not allow customizing the PHP-FPM config. I need it in one of my project to forward some environment variables from the dyno (set...