Jawira Portugal
Jawira Portugal
@port22 I see this issue still open, but global install is already possible: For example to install PHPLOC in `/usr/local/bin/phploc`: ``` sudo phive install -g phploc --trust-gpg-keys 4AA394086372C20A ``` If...
@port22 Important: if you are using Phive to build Docker images use **--copy** option!
Maybe you can also add a Rector rule to remove tombstones, for example after deleting dead code we want to remove all tombstones (for performance reasons maybe) and uninstall `scheb/tombstone`.
Hi @bartmcleod, do you remember what config file you changed ? I'm updating a project from Symfony 4.4 to 5.0 and I have the same issue. As explained by another...
Yes please, I also can't update my project's dependencies because of this. see https://github.com/imbo/behat-api-extension/pull/121
@pixelfantasy You also have to update unit tests, simply changing `composer.json` is not enough.
This would be very useful, mainly because it was deprecated in PHP 8: [Deprecate required parameters after optional parameters in function/method signatures](https://php.watch/versions/8.0/deprecate-required-param-after-optional)
To people working on legacy projects, Rector has a rule to fix this: [OptionalParametersAfterRequiredRector](https://github.com/rectorphp/rector/blob/main/docs/rector_rules_overview.md#optionalparametersafterrequiredrector)
Hi @siad007 ! Thanks for replying :) I just tried to use `fixLastLine` but my build keeps failing: ```console BUILD FAILED /home/jawira/PhpstormProjects/xxxxxx/build.xml:236:59 You must specify a file, use a filelist/fileset,...
I was reading this RFC [Redacting parameters in back traces](https://wiki.php.net/rfc/redact_parameters_in_back_traces) and I remembered this issue. Maybe it can be useful, at least as inspiration?