From b2e15785acf961d6335901c1b74353b2c40d227f Mon Sep 17 00:00:00 2001 From: Tony Date: Fri, 2 Mar 2018 15:30:30 +0100 Subject: [PATCH] minor code style issue : concatenating strings --- Puc/v4p4/Vcs/GitLabApi.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Puc/v4p4/Vcs/GitLabApi.php b/Puc/v4p4/Vcs/GitLabApi.php index afa5991..e5862c4 100644 --- a/Puc/v4p4/Vcs/GitLabApi.php +++ b/Puc/v4p4/Vcs/GitLabApi.php @@ -27,9 +27,9 @@ if ( !class_exists('Puc_v4p4_Vcs_GitLabApi', false) ): //Parse the repository host to support custom hosts. $port = @parse_url($repositoryUrl, PHP_URL_PORT); if ( !empty($port) ){ - $port = ':'.$port; + $port = ':' . $port; } - $this->repositoryHost = @parse_url($repositoryUrl, PHP_URL_HOST).$port; + $this->repositoryHost = @parse_url($repositoryUrl, PHP_URL_HOST) . $port; //Find the repository information $path = @parse_url($repositoryUrl, PHP_URL_PATH);