Skip to content

Commit 944f96b

Browse files
Merge branch '2.8' into 3.2
* 2.8: [FrameworkBundle][Console] JsonDescriptor: Respect original output [Process] Non ASCII characters disappearing during the escapeshellarg
2 parents 51a3799 + 4d03450 commit 944f96b

File tree

6 files changed

+37
-37
lines changed

6 files changed

+37
-37
lines changed

Tests/Fixtures/Descriptor/builder_1_public.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"lazy": true,
88
"shared": true,
99
"abstract": true,
10+
"autowire": false,
11+
"autowiring_types": [],
1012
"file": null,
1113
"factory_class": "Full\\Qualified\\FactoryClass",
1214
"factory_method": "get",
13-
"tags": [],
14-
"autowire": false,
15-
"autowiring_types": []
15+
"tags": []
1616
}
1717
},
1818
"aliases": {

Tests/Fixtures/Descriptor/builder_1_services.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"lazy": true,
88
"shared": true,
99
"abstract": true,
10+
"autowire": false,
11+
"autowiring_types": [],
1012
"file": null,
1113
"factory_class": "Full\\Qualified\\FactoryClass",
1214
"factory_method": "get",
13-
"tags": [],
14-
"autowire": false,
15-
"autowiring_types": []
15+
"tags": []
1616
},
1717
"definition_2": {
1818
"class": "Full\\Qualified\\Class2",
@@ -21,9 +21,14 @@
2121
"lazy": false,
2222
"shared": true,
2323
"abstract": false,
24+
"autowire": false,
25+
"autowiring_types": [],
2426
"file": "\/path\/to\/file",
2527
"factory_service": "factory.service",
2628
"factory_method": "get",
29+
"calls": [
30+
"setMailer"
31+
],
2732
"tags": [
2833
{
2934
"name": "tag1",
@@ -42,12 +47,7 @@
4247
"name": "tag2",
4348
"parameters": []
4449
}
45-
],
46-
"calls": [
47-
"setMailer"
48-
],
49-
"autowire": false,
50-
"autowiring_types": []
50+
]
5151
}
5252
},
5353
"aliases": {

Tests/Fixtures/Descriptor/builder_1_tag1.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@
77
"lazy": false,
88
"shared": true,
99
"abstract": false,
10+
"autowire": false,
11+
"autowiring_types": [],
1012
"file": "\/path\/to\/file",
1113
"factory_service": "factory.service",
1214
"factory_method": "get",
15+
"calls": [
16+
"setMailer"
17+
],
1318
"tags": [
1419
{
1520
"name": "tag1",
@@ -28,12 +33,7 @@
2833
"name": "tag2",
2934
"parameters": []
3035
}
31-
],
32-
"calls": [
33-
"setMailer"
34-
],
35-
"autowire": false,
36-
"autowiring_types": []
36+
]
3737
}
3838
},
3939
"aliases": [],

Tests/Fixtures/Descriptor/builder_1_tags.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"lazy": false,
88
"shared": true,
99
"abstract": false,
10+
"autowire": false,
11+
"autowiring_types": [],
1012
"file": "\/path\/to\/file",
11-
"calls": [
12-
"setMailer"
13-
],
1413
"factory_service": "factory.service",
1514
"factory_method": "get",
16-
"autowire": false,
17-
"autowiring_types": []
15+
"calls": [
16+
"setMailer"
17+
]
1818
}
1919
],
2020
"tag2": [
@@ -25,14 +25,14 @@
2525
"lazy": false,
2626
"shared": true,
2727
"abstract": false,
28+
"autowire": false,
29+
"autowiring_types": [],
2830
"file": "\/path\/to\/file",
29-
"calls": [
30-
"setMailer"
31-
],
3231
"factory_service": "factory.service",
3332
"factory_method": "get",
34-
"autowire": false,
35-
"autowiring_types": []
33+
"calls": [
34+
"setMailer"
35+
]
3636
}
3737
]
3838
}

Tests/Fixtures/Descriptor/definition_1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"lazy": true,
66
"shared": true,
77
"abstract": true,
8+
"autowire": false,
9+
"autowiring_types": [],
810
"file": null,
911
"factory_class": "Full\\Qualified\\FactoryClass",
1012
"factory_method": "get",
11-
"tags": [],
12-
"autowire": false,
13-
"autowiring_types": []
13+
"tags": []
1414
}

Tests/Fixtures/Descriptor/definition_2.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@
55
"lazy": false,
66
"shared": true,
77
"abstract": false,
8+
"autowire": false,
9+
"autowiring_types": [],
810
"file": "\/path\/to\/file",
911
"factory_service": "factory.service",
1012
"factory_method": "get",
13+
"calls": [
14+
"setMailer"
15+
],
1116
"tags": [
1217
{
1318
"name": "tag1",
@@ -26,10 +31,5 @@
2631
"name": "tag2",
2732
"parameters": []
2833
}
29-
],
30-
"calls": [
31-
"setMailer"
32-
],
33-
"autowire": false,
34-
"autowiring_types": []
34+
]
3535
}

0 commit comments

Comments
 (0)