Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUGFIX: ErrorException in VCR/Storage/Yaml.php:61 #295

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Jan 6, 2020

  1. Fix the parse error on PHP 7.4

    Do not return the stat since we don't know the resulting the size that the file will have after having all transformations applied. When including files, PHP 7.4 and newer are sensitive to file size reported by stat.
    morozov committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    42ec927 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2020

  1. BUGFIX: ErrorException in VCR/Storage/Yaml.php:61

    if the fixture is recently created and it has no content, the parser returns null to $recording. And array-like access to null via $recording[0] will raise an exception. With this little check this behavior is fixed and also all tests will work properly.
    bomas13 committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    74b1d2b View commit details
    Browse the repository at this point in the history