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: phpDocumentor/ReflectionDocBlock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.6.4
Choose a base ref
...
head repository: phpDocumentor/ReflectionDocBlock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.6.5
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 26, 2025

  1. [BUGFIX] Mitigate "Using null as an array offset is deprecated"

    Using `DocBlockFactory->create()` with a phpdocblock
    hanging a `@throws` tag followed by a exception class
    name emits following PHP 8.5.0 deprecation:
    
    ```
    Using null as an array offset is deprecated,
    use an empty string instead
    ```
    
    in `StandardTagFactory->getArgumentsForParametersFromWiring()`.
    
    This change uses the null-coalsce operator to fallback to
    an empty string for the value which should be used as an
    array key instead of using `null` to mitigate the deprecation
    notice with PHP8.5.0 and matches the behaviour in earlier
    PHP versions without the deprecation message.
    sbuerk committed Nov 26, 2025
    Configuration menu
    Copy the full SHA
    67d3309 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2025

  1. Remove outdated test

    We support collections of self now.
    jaapio committed Nov 27, 2025
    Configuration menu
    Copy the full SHA
    84265c8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #423 from phpDocumentor/remove-outdated-test

    Remove outdated test
    jaapio authored Nov 27, 2025
    Configuration menu
    Copy the full SHA
    4663249 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #422 from sbuerk/stefan-1

    [BUGFIX] Mitigate "Using null as an array offset is deprecated"
    jaapio authored Nov 27, 2025
    Configuration menu
    Copy the full SHA
    90614c7 View commit details
    Browse the repository at this point in the history
Loading