 - no_get_prefix_fixer:
    - "function getChannel(): Channel { ..." => "function channel(): Channel { ..."
    - Via Rector? https://github.com/rectorphp/rector


 - correct position of loop-item doc-comment:

        /** @var ProductionStep $step */
        foreach ($supportedSteps as $step) {

    vs.:

        foreach ($supportedSteps as $step) {
            /** @var ProductionStep $step */
