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

Skip to content

Commit 90431e7

Browse files
Merge branch '3.4' into 4.3
* 3.4: [Finder] Fixed docs Fix PR template Adjust pull request template for 5.0 branchout Update HttpKernel.php
2 parents 5188215 + b104760 commit 90431e7

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | 4.4 for features / 3.4 or 4.3 for bug fixes <!-- see below -->
3+
| Branch? | master for features / 3.4, 4.3, 4.4 or 5.0 for bug fixes <!-- see below -->
44
| Bug fix? | yes/no
55
| New feature? | yes/no <!-- please update src/**/CHANGELOG.md files -->
66
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
@@ -16,6 +16,5 @@ Additionally (see https://symfony.com/roadmap):
1616
- Never break backward compatibility (see https://symfony.com/bc).
1717
- Bug fixes must be submitted against the lowest maintained branch where they apply
1818
(lowest branches are regularly merged to upper ones so they get the fixes too.)
19-
- Features and deprecations must be submitted against branch 4.4.
20-
- Legacy code removals go to the master branch.
19+
- Features and deprecations must be submitted against branch master.
2120
-->

src/Symfony/Component/Finder/Finder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ private function searchInDirectory(string $dir): \Iterator
793793
/**
794794
* Normalizes given directory names by removing trailing slashes.
795795
*
796-
* Excluding: (s)ftp:// wrapper
796+
* Excluding: (s)ftp:// or ssh2.(s)ftp:// wrapper
797797
*
798798
* @param string $dir
799799
*

src/Symfony/Component/HttpKernel/HttpKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(EventDispatcherInterface $dispatcher, ControllerReso
6262
*/
6363
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
6464
{
65-
$request->headers->set('X-Php-Ob-Level', ob_get_level());
65+
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
6666

6767
try {
6868
return $this->handleRaw($request, $type);

0 commit comments

Comments
 (0)