Commit 7baeaa2
committed
Merge branch '2.4'
* 2.4:
[Process] minor fixes
Improve performance of getNextEmbedBlock by removing unnecessary preg_match and function calls.
Avoid unnecessary line indentation calculation.
Optimise Inline::evaluateScalar() for parsing strings.
fixed CS
fixed parsing Mongo DSN and added Test for it
() is also a valid delimiter
Adding PHP 5.6 to travis-ci tests
Update BCryptPasswordEncoder.php
[Validator] Removed PHP <5.3.3 specific code which is not officially supported.
Fixed wrong redirect url if path contains some query parametersFile tree
Expand file treeCollapse file tree
11 files changed
+177
-68
lines changedOpen diff view settings
Filter options
- src/Symfony
- Bundle/FrameworkBundle
- Controller
- Tests/Controller
- Component
- Finder/Expression
- HttpKernel
- Profiler
- Tests/Profiler
- Process
- Security/Core/Encoder
- Yaml
Expand file treeCollapse file tree
11 files changed
+177
-68
lines changedOpen diff view settings
Collapse file
+1Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
5 | 5 | |
6 | 6 | |
7 | 7 | |
| 8 | + |
8 | 9 | |
9 | 10 | |
10 | 11 | |
|
Collapse file
src/Symfony/Bundle/FrameworkBundle/Controller/RedirectController.php
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Controller/RedirectController.php+5-1Lines changed: 5 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
100 | 100 | |
101 | 101 | |
102 | 102 | |
103 | | - |
| 103 | + |
| 104 | + |
| 105 | + |
| 106 | + |
| 107 | + |
104 | 108 | |
105 | 109 | |
106 | 110 | |
|
Collapse file
src/Symfony/Bundle/FrameworkBundle/Tests/Controller/RedirectControllerTest.php
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Controller/RedirectControllerTest.php+34-1Lines changed: 34 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
199 | 199 | |
200 | 200 | |
201 | 201 | |
202 | | - |
| 202 | + |
| 203 | + |
| 204 | + |
| 205 | + |
| 206 | + |
| 207 | + |
| 208 | + |
| 209 | + |
| 210 | + |
| 211 | + |
| 212 | + |
| 213 | + |
| 214 | + |
| 215 | + |
| 216 | + |
| 217 | + |
| 218 | + |
| 219 | + |
| 220 | + |
| 221 | + |
| 222 | + |
| 223 | + |
| 224 | + |
| 225 | + |
| 226 | + |
| 227 | + |
| 228 | + |
| 229 | + |
| 230 | + |
| 231 | + |
203 | 232 | |
204 | 233 | |
205 | 234 | |
| ||
218 | 247 | |
219 | 248 | |
220 | 249 | |
| 250 | + |
| 251 | + |
| 252 | + |
| 253 | + |
221 | 254 | |
222 | 255 | |
223 | 256 | |
|
Collapse file
src/Symfony/Component/Finder/Expression/Regex.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/Finder/Expression/Regex.php+5-1Lines changed: 5 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
65 | 65 | |
66 | 66 | |
67 | 67 | |
68 | | - |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | + |
| 72 | + |
69 | 73 | |
70 | 74 | |
71 | 75 | |
|
Collapse file
src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php+34-13Lines changed: 34 additions & 13 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
99 | 99 | |
100 | 100 | |
101 | 101 | |
102 | | - |
103 | | - |
104 | | - |
105 | | - |
106 | | - |
107 | | - |
108 | | - |
109 | | - |
110 | | - |
111 | | - |
112 | | - |
113 | | - |
| 102 | + |
| 103 | + |
| 104 | + |
| 105 | + |
| 106 | + |
| 107 | + |
114 | 108 | |
115 | 109 | |
116 | | - |
| 110 | + |
| 111 | + |
| 112 | + |
| 113 | + |
| 114 | + |
117 | 115 | |
118 | 116 | |
119 | 117 | |
| ||
233 | 231 | |
234 | 232 | |
235 | 233 | |
| 234 | + |
| 235 | + |
| 236 | + |
| 237 | + |
| 238 | + |
| 239 | + |
| 240 | + |
| 241 | + |
| 242 | + |
| 243 | + |
| 244 | + |
| 245 | + |
| 246 | + |
| 247 | + |
| 248 | + |
| 249 | + |
| 250 | + |
| 251 | + |
| 252 | + |
| 253 | + |
| 254 | + |
| 255 | + |
| 256 | + |
236 | 257 | |
Collapse file
src/Symfony/Component/HttpKernel/Tests/Profiler/MongoDbProfilerStorageTest.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Tests/Profiler/MongoDbProfilerStorageTest.php+37Lines changed: 37 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
71 | 71 | |
72 | 72 | |
73 | 73 | |
| 74 | + |
| 75 | + |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | + |
| 85 | + |
| 86 | + |
| 87 | + |
| 88 | + |
| 89 | + |
| 90 | + |
| 91 | + |
| 92 | + |
| 93 | + |
| 94 | + |
| 95 | + |
| 96 | + |
| 97 | + |
| 98 | + |
| 99 | + |
74 | 100 | |
75 | 101 | |
76 | 102 | |
| ||
87 | 113 | |
88 | 114 | |
89 | 115 | |
| 116 | + |
| 117 | + |
| 118 | + |
| 119 | + |
| 120 | + |
| 121 | + |
| 122 | + |
| 123 | + |
| 124 | + |
| 125 | + |
| 126 | + |
90 | 127 | |
91 | 128 | |
92 | 129 | |
|
Collapse file
src/Symfony/Component/Process/Process.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/Process/Process.php+4-1Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
911 | 911 | |
912 | 912 | |
913 | 913 | |
914 | | - |
| 914 | + |
| 915 | + |
| 916 | + |
915 | 917 | |
916 | 918 | |
917 | 919 | |
| ||
1190 | 1192 | |
1191 | 1193 | |
1192 | 1194 | |
| 1195 | + |
1193 | 1196 | |
1194 | 1197 | |
1195 | 1198 | |
|
Collapse file
src/Symfony/Component/Process/ProcessPipes.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/Process/ProcessPipes.php+4-1Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
79 | 79 | |
80 | 80 | |
81 | 81 | |
82 | | - |
| 82 | + |
83 | 83 | |
84 | 84 | |
85 | 85 | |
| ||
227 | 227 | |
228 | 228 | |
229 | 229 | |
| 230 | + |
| 231 | + |
230 | 232 | |
231 | 233 | |
232 | 234 | |
| ||
262 | 264 | |
263 | 265 | |
264 | 266 | |
| 267 | + |
265 | 268 | |
266 | 269 | |
267 | 270 | |
|
Collapse file
src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php+1Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
29 | 29 | |
30 | 30 | |
31 | 31 | |
| 32 | + |
32 | 33 | |
33 | 34 | |
34 | 35 | |
|
Collapse file
src/Symfony/Component/Yaml/Inline.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/Yaml/Inline.php+43-39Lines changed: 43 additions & 39 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
386 | 386 | |
387 | 387 | |
388 | 388 | |
389 | | - |
| 389 | + |
390 | 390 | |
391 | | - |
| 391 | + |
392 | 392 | |
393 | 393 | |
394 | 394 | |
395 | | - |
396 | | - |
397 | | - |
398 | | - |
399 | | - |
400 | | - |
401 | | - |
402 | | - |
403 | | - |
404 | | - |
405 | | - |
406 | | - |
407 | | - |
408 | | - |
409 | | - |
410 | | - |
411 | | - |
412 | | - |
413 | | - |
414 | | - |
415 | | - |
416 | | - |
417 | | - |
418 | | - |
419 | | - |
| 395 | + |
420 | 396 | |
421 | | - |
| 397 | + |
422 | 398 | |
423 | | - |
424 | | - |
425 | | - |
426 | | - |
427 | | - |
428 | | - |
429 | | - |
430 | | - |
431 | | - |
432 | | - |
433 | | - |
| 399 | + |
| 400 | + |
| 401 | + |
| 402 | + |
| 403 | + |
| 404 | + |
| 405 | + |
| 406 | + |
| 407 | + |
| 408 | + |
| 409 | + |
| 410 | + |
| 411 | + |
| 412 | + |
| 413 | + |
| 414 | + |
| 415 | + |
| 416 | + |
| 417 | + |
| 418 | + |
| 419 | + |
| 420 | + |
| 421 | + |
| 422 | + |
| 423 | + |
| 424 | + |
| 425 | + |
| 426 | + |
| 427 | + |
| 428 | + |
| 429 | + |
| 430 | + |
| 431 | + |
| 432 | + |
| 433 | + |
| 434 | + |
| 435 | + |
| 436 | + |
| 437 | + |
434 | 438 | |
435 | 439 | |
436 | 440 | |
|
0 commit comments