Greg Korba
Greg Korba
[As I found out](https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/6621#issuecomment-1237500506) in #6621 fetching property of enums in const expressions works properly (surprisingly for me), BUT we probably need fixer that would enforce lowercase `->name` and `->value`...
At least we could detect if `->name` / `->value` is after `Foo::Bar` syntax (fetching property in const expressions), because for `$foo->name`, as you pointed, it would not be possible. How...
After #6621 gets merged, we need to create another MR that would add and fix such fixtures: SHOW DIFF ```diff Index: tests/Fixtures/Integration/misc/PHP8_2.test IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff...
@ondrejmirtes @lookyman any news on this?
@ondrejmirtes @lookyman friendly ping 😉
@ondrejmirtes I described it in the PR's description 🤷♂️ I really would like to provide proper test cases, but I had hard time with that and just asked for help...
I confirm, we also get `Call to an undefined method Symfony\Component\Console\Helper\HelperInterface::ask().` with such usage: ``` $helper = $this->getHelper('question'); $helper->ask($input, $output, $question); ``` FYI: We don't use `consoleApplicationLoader` because we have...
Until today I was following original branching model but I find merging `master` to `develop` better in `git describe` context. In original model tags on `master` branch are not part...
From Git's point of view feature based on other feature is just another branch with the same base (e.g. `develop`) where one branch is fully contained in second one. If...
IMO this is proper behavior. Tag prefix is configurable so appending it to branch's name would kill its purpose. Imagine scenario: you do `git flow init` with empty prefix, you...