Skip to content

Commit 2799d9a

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions return null when message with name is not set use local PHP web server to test HTTP stream wrappers [Translation] Silence error when intl not loaded Bump Symfony version to 6.4.7 Update VERSION for 6.4.6 Update CHANGELOG for 6.4.6 Bump Symfony version to 5.4.39 Update VERSION for 5.4.38 Update CONTRIBUTORS for 5.4.38 Update CHANGELOG for 5.4.38
2 parents fde915c + ae650d8 commit 2799d9a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Tests/Helper/ProgressBarTest.php

+7
Original file line numberDiff line numberDiff line change
@@ -1267,4 +1267,11 @@ public function testMultiLineFormatIsFullyCorrectlyWithManuallyCleanup()
12671267
stream_get_contents($output->getStream())
12681268
);
12691269
}
1270+
1271+
public function testGetNotSetMessage()
1272+
{
1273+
$progressBar = new ProgressBar($this->getOutputStream());
1274+
1275+
$this->assertNull($progressBar->getMessage());
1276+
}
12701277
}

0 commit comments

Comments
 (0)