Manuel Kress

Results 8 comments of Manuel Kress

As I understand it, Kahlan does not test the original source code, but rather creates a copy and adds its own code to the copy. This is made to mock...

Oh, after a short research I found that I can disable the patching via the following code in my `kahlan-config.php`: ```php $this->commandLine()->set('exclude', [ 'Namespace' ]); ``` This disables patching for...

I think the problem is that the current fixer works like this: I'd like to either remove the docblock or convert it to `@param` ones. I currently see no case...

I added a draft PR on how this feature could be implemented. It is only a proof of concept yet: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/pull/7569 Can you please give me feedback if this MAY...

> The only concern is that some databases don’t roll back the whole transaction on deadlock, so behavior might differ. Is this actually true? Which database does not do that?...

@JoniJnm Seems like the setting you linked only applies to lock wait timeouts. The problem in this issue is only related to deadlocks deadlocks. Afaik this are two different error...

@JoniJnm Ah okay, I get it. The problem _also_ exists for timeouts, but is hard to fix in this case, because it depends on the configuration, right? But for deadlocks...