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: symfony/var-dumper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.4.13
Choose a base ref
...
head repository: symfony/var-dumper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.4.14
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 3, 2022

  1. Copy the full SHA
    1069c7a View commit details

Commits on Oct 7, 2022

  1. Merge branch '4.4' into 5.4

    * 4.4:
      [Console] Fix `Helper::removeDecoration` hyperlink bug
      Guard scripts from being run in non-CLI contexts
      a readonly property must not be reported as being writable
    fabpot committed Oct 7, 2022
    Copy the full SHA
    6894d06 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 Resources/bin/var-dump-server
4 changes: 4 additions & 0 deletions Resources/bin/var-dump-server
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@
* file that was distributed with this source code.
*/

if ('cli' !== PHP_SAPI) {
throw new Exception('This script must be run from the command line.');
}

/**
* Starts a dump server to collect and output dumps on a single place with multiple formats support.
*