Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php-parallel-lint/PHP-Parallel-Lint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: php-parallel-lint/PHP-Parallel-Lint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.1
Choose a head ref
  • 7 commits
  • 12 files changed
  • 4 contributors

Commits on May 5, 2021

  1. Configuration menu
    Copy the full SHA
    8b8a59a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c07745 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2021

  1. Extend by the Code Climate output format

    The Code Climate format is used in the GitLab CI/CD to show errors in
    the merge request page. The simple JSON format is not sufficient for
    this.
    Lukas Hettwer authored and grogy committed May 8, 2021
    Configuration menu
    Copy the full SHA
    a6090fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c5c209 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2021

  1. PHP 8.1: silence the deprecation notice about jsonSerialize() return …

    …type
    
    As of PHP 8.1, PHP adds return type declarations to the PHP native functions.
    
    For the `JsonSerializable::jsonSerialize()` interface method, the new signature is:
    ```php
    function jsonSerialize(): mixed {}
    ```
    
    As this libary still supports PHP 5.3, it is not possible to add this return type as:
    1. Return types weren't available until PHP 7.0 and
    2. the `mixed` return type only became available in PHP 8.0.
    
    For libraries supporting PHP 7.0+, it would have been possible to fix this by adding an `array` return type (higher specificity).
    
    For libraries still supporting PHP < 7.0, there are two choices:
    1. Either decouple from the `JsonSerialize` interface.
    2. Or use a PHP 8.1 attribute to silence the deprecation notice.
    
    As prior to PHP 8.0, attributes are ignored as if they were comments, it is safe to add the attribute to the library and IMO, this is prefered over decoupling the classes from the `JsonSerializable` interface.
    
    To prevent PHPCS tripping up over "something" existing between the function docblock and the declaration, PHPCS 3.6.0 should be used, which is the first PHPCS version with full PHP 8.0 syntax support in the sniffs (albeit that there are still some small things to fix up in PHPCS).
    
    Refs:
    * https://wiki.php.net/rfc/internal_method_return_types
    * php/php-src#7051
    jrfnl authored and grogy committed Aug 13, 2021
    Configuration menu
    Copy the full SHA
    49cc975 View commit details
    Browse the repository at this point in the history
  2. PHP 8.1: silence the deprecation notice about RecursiveFilterIterator…

    … method return types
    
    As of PHP 8.1, PHP adds return type declarations to the PHP native functions.
    
    For the `RecursiveFilterIterator`, the relevant method signatures are:
    * `accept(): bool`
    * `hasChildren(): bool`
    * `getChildren(): ?RecursiveFilterIterator`
    
    As this libary still supports PHP 5.3, it is not possible to add this return type as:
    1. Return types weren't available until PHP 7.0 and
    2. the `mixed` return type only became available in PHP 8.0.
    
    For libraries still supporting PHP < 7.0, there are two choices:
    1. Either decouple from the interface.
    2. Or use a PHP 8.1 attribute to silence the deprecation notice.
    
    As prior to PHP 8.0, attributes are ignored as if they were comments, it is safe to add the attribute to the library and IMO, this is prefered over decoupling the classes from the interface.
    
    To prevent PHPCS tripping up over "something" existing between the function docblock and the declaration, PHPCS 3.6.0 should be used, which is the first PHPCS version with full PHP 8.0 syntax support in the sniffs (albeit that there are still some small things to fix up in PHPCS).
    
    Refs:
    * https://wiki.php.net/rfc/internal_method_return_types
    jrfnl authored and grogy committed Aug 13, 2021
    Configuration menu
    Copy the full SHA
    7b09d72 View commit details
    Browse the repository at this point in the history
  3. New version - 1.3.1

    grogy committed Aug 13, 2021
    Configuration menu
    Copy the full SHA
    761f380 View commit details
    Browse the repository at this point in the history
Loading