Nathanael Esayeas

Results 58 comments of Nathanael Esayeas

@zonuexe > What will your workaround solve? enables auto-completion, syntax error reporting, schema validation, and several additional features, depending on the IDE's capabilities or available extensions/plugins. --- For CI, “Extract”...

> What will your workaround solve? this issue https://github.com/laminas/laminas-ci-matrix-action/issues/301

@brettmc thanks for the quick response, i will work on this.

`SetListInterface` is implemented on a few SetList ValueObjects, [similar to rector](https://github.com/rectorphp/rector-src/blob/acca1e006a8fc1eee197fc8ffa6fa5e7cc2af131/src/Set/ValueObject/SetList.php#L12) Before deprecation: - https://github.com/ghostwriter/mockery-rector/blob/641386f58fac1504f782745080f69e69de19a26b/src/MockerySetList.php - https://github.com/ghostwriter/mockery-rector/blob/641386f58fac1504f782745080f69e69de19a26b/src/MockeryLevelSetList.php After deprecation: https://github.com/ghostwriter/mockery-rector/blob/28d60268ff72943df51c561f556d6eb5c412bcfc/src/MockerySetProvider.php https://github.com/ghostwriter/mockery-rector/blob/28d60268ff72943df51c561f556d6eb5c412bcfc/src/MockerySetList.php Config: ```php use Ghostwriter\MockeryRector\MockeryLevelSetList; use Ghostwriter\MockeryRector\MockerySetList; use Ghostwriter\MockeryRector\Rule\ExtendMockeryTestCaseRector; use...

I would like to use the `ComposerTriggeredSet` feature. I would like to see a `withSetProviders(string ...$setProviders)` method that accepts FQCN (string) of a class that implements `SetProviderInterface` which we can...

Hi @TomasVotruba, With the introduction of [Composer-Based Sets](https://getrector.com/documentation/composer-based-sets) and [Custom Set Providers](https://getrector.com/documentation/custom-set-provider), Currently, requiring a PR for every custom `SetProvider` developers create feels like an unnecessary hurdle. > *If your...

If the `branch-alias` in the `master` branch is preventing you from using the `6.x` branch (causing it to pull the `master` branch instead of referencing the correct commit from the...

Hey @davidcoutadeur, Thank you for reporting this bug. Mockery passes the parameter by reference, so this should have worked. I was able to reproduce the issue but don't have a...

**Notes:** Mockery internally passes the parameter by reference during its `match()` method call, which is why `$control` is modified correctly both inside and outside the closure. ```php /** * Mockery...

> Any idea why you get `Could not find a usable config.yml, you may have revoked the CircleCI OAuth app.` error @ghostwriter ? Is it fixed with some rebase ?...