Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5e61c6f

Browse files
[VarExporter] a new component to serialize values to plain PHP code
1 parent 2df7320 commit 5e61c6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+650
-433
lines changed

.php_cs.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ return PhpCsFixer\Config::create()
2424
->exclude(array(
2525
'Symfony/Bridge/ProxyManager/Tests/LazyProxy/PhpDumper/Fixtures',
2626
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
27-
'Symfony/Component/Cache/Tests/Marshaller/Fixtures',
2827
'Symfony/Component/DependencyInjection/Tests/Fixtures',
2928
'Symfony/Component/Routing/Tests/Fixtures/dumper',
3029
// fixture templates
@@ -33,6 +32,7 @@ return PhpCsFixer\Config::create()
3332
'Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom',
3433
// generated fixtures
3534
'Symfony/Component/VarDumper/Tests/Fixtures',
35+
'Symfony/Component/VarExporter/Tests/Fixtures',
3636
// resource templates
3737
'Symfony/Bundle/FrameworkBundle/Resources/views/Form',
3838
// explicit trigger_error tests

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"symfony/twig-bundle": "self.version",
8282
"symfony/validator": "self.version",
8383
"symfony/var-dumper": "self.version",
84+
"symfony/var-exporter": "self.version",
8485
"symfony/web-link": "self.version",
8586
"symfony/web-profiler-bundle": "self.version",
8687
"symfony/web-server-bundle": "self.version",

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-iterator.php

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-object-custom.php

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-object.php

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/bool.php

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/clone.php

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/datetime.php

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/hard-references-recursive.php

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/hard-references.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/incomplete-class.php

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/private.php

Lines changed: 0 additions & 40 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/serializable.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/simple-array.php

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/spl-object-storage.php

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/wakeup.php

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)