Skip to content

Commit

Permalink
Fix the yml parser issue with unescaped backslash in double quoted st…
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeSimonson committed Dec 10, 2015
1 parent af12b62 commit af3cce7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name: Doctrine Sandbox Migrations
table_name: doctrine_migration_versions_test
migrations:
- { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version1Test", "version": "Version1Test" }
- { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version2Test", "version": "Version2Test" }
- { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version3Test", "version": "Version3Test" }
- { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version1Test', 'version': 'Version1Test' }
- { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version2Test', 'version': 'Version2Test' }
- { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version3Test', 'version': 'Version3Test' }

0 comments on commit af3cce7

Please sign in to comment.