Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7831ad7

Browse filesBrowse files
[VarExporter] a new component to serialize values to plain PHP code
1 parent 2df7320 commit 7831ad7
Copy full SHA for 7831ad7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

47 files changed

+651
-433
lines changed

‎.php_cs.dist

Copy file name to clipboardExpand all lines: .php_cs.dist
+1-1Lines 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

Copy file name to clipboardExpand all lines: composer.json
+1Lines 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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-iterator.php
-29Lines changed: 0 additions & 29 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-object-custom.php
-29Lines changed: 0 additions & 29 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/array-object.php
-37Lines changed: 0 additions & 37 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/bool.php
-1Lines changed: 0 additions & 1 deletion
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/clone.php
-21Lines changed: 0 additions & 21 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/datetime.php
-31Lines changed: 0 additions & 31 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/hard-references-recursive.php
-22Lines changed: 0 additions & 22 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/hard-references.php
-26Lines changed: 0 additions & 26 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/incomplete-class.php
-15Lines changed: 0 additions & 15 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/private.php
-40Lines changed: 0 additions & 40 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/serializable.php
-20Lines changed: 0 additions & 20 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/simple-array.php
-7Lines changed: 0 additions & 7 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/spl-object-storage.php
-28Lines changed: 0 additions & 28 deletions
This file was deleted.

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Marshaller/Fixtures/wakeup.php
-31Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.