Skip to content

Commit 4ceefa6

Browse files
committed
Apply the coding standard
1 parent 3332557 commit 4ceefa6

File tree

4 files changed

+24
-16
lines changed

4 files changed

+24
-16
lines changed

apache/helpers.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
* Helper function to decode and save multiple SSL files from base64.
88
*
99
* @param string $base64_string The base64 encoded string containing multiple SSL files separated by commas.
10-
* If no commas are present, the entire string is treated as a single file.
11-
* @param string $prefix The prefix to use for the generated SSL file names.
12-
* @param string $extension The file extension to use for the generated SSL files.
10+
* If no commas are present, the entire string is treated as a single file.
11+
* @param string $prefix The prefix to use for the generated SSL file names.
12+
* @param string $extension The file extension to use for the generated SSL files.
13+
*
1314
* @return string A comma-separated list of paths to the generated SSL files.
1415
*/
15-
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string {
16+
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string
17+
{
1618
// Ensure the output directory exists
1719
if (!is_dir(PMA_SSL_DIR)) {
1820
mkdir(PMA_SSL_DIR, 0755, true);

fpm-alpine/helpers.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
* Helper function to decode and save multiple SSL files from base64.
88
*
99
* @param string $base64_string The base64 encoded string containing multiple SSL files separated by commas.
10-
* If no commas are present, the entire string is treated as a single file.
11-
* @param string $prefix The prefix to use for the generated SSL file names.
12-
* @param string $extension The file extension to use for the generated SSL files.
10+
* If no commas are present, the entire string is treated as a single file.
11+
* @param string $prefix The prefix to use for the generated SSL file names.
12+
* @param string $extension The file extension to use for the generated SSL files.
13+
*
1314
* @return string A comma-separated list of paths to the generated SSL files.
1415
*/
15-
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string {
16+
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string
17+
{
1618
// Ensure the output directory exists
1719
if (!is_dir(PMA_SSL_DIR)) {
1820
mkdir(PMA_SSL_DIR, 0755, true);

fpm/helpers.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
* Helper function to decode and save multiple SSL files from base64.
88
*
99
* @param string $base64_string The base64 encoded string containing multiple SSL files separated by commas.
10-
* If no commas are present, the entire string is treated as a single file.
11-
* @param string $prefix The prefix to use for the generated SSL file names.
12-
* @param string $extension The file extension to use for the generated SSL files.
10+
* If no commas are present, the entire string is treated as a single file.
11+
* @param string $prefix The prefix to use for the generated SSL file names.
12+
* @param string $extension The file extension to use for the generated SSL files.
13+
*
1314
* @return string A comma-separated list of paths to the generated SSL files.
1415
*/
15-
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string {
16+
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string
17+
{
1618
// Ensure the output directory exists
1719
if (!is_dir(PMA_SSL_DIR)) {
1820
mkdir(PMA_SSL_DIR, 0755, true);

helpers.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
* Helper function to decode and save multiple SSL files from base64.
88
*
99
* @param string $base64_string The base64 encoded string containing multiple SSL files separated by commas.
10-
* If no commas are present, the entire string is treated as a single file.
11-
* @param string $prefix The prefix to use for the generated SSL file names.
12-
* @param string $extension The file extension to use for the generated SSL files.
10+
* If no commas are present, the entire string is treated as a single file.
11+
* @param string $prefix The prefix to use for the generated SSL file names.
12+
* @param string $extension The file extension to use for the generated SSL files.
13+
*
1314
* @return string A comma-separated list of paths to the generated SSL files.
1415
*/
15-
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string {
16+
function decodeAndSaveSslFiles(string $base64_string, string $prefix, string $extension): string
17+
{
1618
// Ensure the output directory exists
1719
if (!is_dir(PMA_SSL_DIR)) {
1820
mkdir(PMA_SSL_DIR, 0755, true);

0 commit comments

Comments
 (0)