Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.32 KB

UPGRADE-v7.3.1.md

File metadata and controls

29 lines (21 loc) · 1.32 KB

This guide contains instructions to upgrade from version v7.3.0 to v7.3.1.

Before you start, don't forget to take a look at general instructions about upgrading. There you can find links to upgrade notes for other versions too.

Tools

  • lower your PHPStan level #1199
    • if you have upgraded your project from v7.2.x to v7.3.0 you have already done this step as a part of the previous upgrade
    • in your build.xml file, add a new property phpstan.level (for the properties to be loaded, they have to be above the import task)
            <property name="path.framework" value="${path.vendor}/shopsys/framework"/>
      
      -     <import file="${path.framework}/build.xml"/>
      -
            <property name="is-multidomain" value="true"/>
      +     <property name="phpstan.level" value="1"/>
      
      +     <import file="${path.framework}/build.xml"/>
      +
        </project>
    • remove ignored error patterns that are not matched in reported errors from phpstan.neon after running php phing phpstan