diff --git a/.gitattributes b/.gitattributes index 4a168d9..c882cf8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,5 +6,4 @@ /.gitattributes export-ignore /.gitignore export-ignore /.php-cs-fixer.php export-ignore -/phpcs.xml export-ignore /phpunit.xml export-ignore diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index ccfa59e..04861ce 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -111,7 +111,7 @@ 'no_empty_comment' => true, 'no_trailing_whitespace_in_comment' => true, 'single_line_comment_spacing' => true, - 'single_line_comment_style' => ['comment_types' => ['asterisk', 'hash']] + 'single_line_comment_style' => ['comment_types' => ['hash']] ]; $constantNotationRules = [ diff --git a/src/Client/Client.php b/src/Client/Client.php index bfd39b7..12c111f 100644 --- a/src/Client/Client.php +++ b/src/Client/Client.php @@ -174,7 +174,7 @@ protected function setSsl(\CurlHandle $curlHandle, RequestInterface $request): s } if (!$this->hasSSLVerification) { - // @noinspection CurlSslServerSpoofingInspection + /* @noinspection CurlSslServerSpoofingInspection */ \curl_setopt($curlHandle, \CURLOPT_SSL_VERIFYPEER, false); } }