Philipp Scheit

Results 25 issues of Philipp Scheit

```php private function _stripSpace(string $string): string { $parts = preg_split("/[\r\n\t ]+/", $string); foreach ($parts as $i => $part) { $parts[$i] = trim($part, " \r\n\t"); } return trim(implode(' ', $parts), "...

```php private function _isMatched($item): bool { $this->_nextMatchKey = array_shift($this->_keys); $nextMatcher = array_shift($this->_elementMatchers); if (!$nextMatcher->matches($item)) { $this->_describeMismatch($nextMatcher, $item); return false; } return true; } ``` $this->_elementMatchers might have 0 elements when...

I noticed a few comments about Codestyle in PRs. To keep maintainer and contributors happy, I'd suggest to automate the codestyle. That way everyone can concentrate on the code(quality) and...

have to think about how to continue and if this makes sense and how maybe you can look at my comments questions. Of course I will split this PR in...

Hey, thanks for porting this: Its really helpful having this, when using wiremock. I noticed that a lot classes (e.g. WireMock::create()) are missing docblocks/typehints. Would you be willing to type...