Skip to content

Commit c8dde13

Browse files
committed
make buildPath-methods public
1 parent d20b40e commit c8dde13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TestUtils/PEMCertificatesMock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class PEMCertificatesMock
4646
* @param string $file The file to use
4747
* @return string
4848
*/
49-
private static function buildKeysPath(string $file): string
49+
public static function buildKeysPath(string $file): string
5050
{
5151
$base = dirname(__FILE__, 2);
5252
return 'file://' . $base . DIRECTORY_SEPARATOR . self::KEYS_DIR . DIRECTORY_SEPARATOR . $file;
@@ -57,7 +57,7 @@ private static function buildKeysPath(string $file): string
5757
* @param string $file The file to use
5858
* @return string
5959
*/
60-
private static function buildCertsPath(string $file): string
60+
public static function buildCertsPath(string $file): string
6161
{
6262
$base = dirname(__FILE__, 2);
6363
return 'file://' . $base . DIRECTORY_SEPARATOR . self::CERTS_DIR . DIRECTORY_SEPARATOR . $file;

0 commit comments

Comments
 (0)