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

Commits on Mar 6, 2023

  1. Copy the full SHA
    4c633fa View commit details

Commits on Mar 9, 2023

  1. Merge branch '5.4' into 6.2

    * 5.4:
      [Tests] Replace `setMethods()` by `onlyMethods()` and `addMethods()`
    nicolas-grekas committed Mar 9, 2023
    Copy the full SHA
    0e0d0f7 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 Tests/FormTest.php
2 changes: 1 addition & 1 deletion Tests/FormTest.php
Original file line number Diff line number Diff line change
@@ -874,7 +874,7 @@ protected function getFormFieldMock($name, $value = null)
{
$field = $this
->getMockBuilder(FormField::class)
->setMethods(['getName', 'getValue', 'setValue', 'initialize'])
->onlyMethods(['getName', 'getValue', 'setValue', 'initialize'])
->disableOriginalConstructor()
->getMock()
;