Skip to content

Commit b243272

Browse files
committed
Removed closing php tag for save stdout
1 parent c52540b commit b243272

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

cleantalk.class.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ class CleantalkRequest {
298298

299299
/**
300300
* Phone number
301-
* @var type
301+
* @var type
302302
*/
303303
public $phone = null;
304304

@@ -310,7 +310,7 @@ class CleantalkRequest {
310310

311311
/**
312312
* Fill params with constructor
313-
* @param type $params
313+
* @param array $params
314314
*/
315315
public function __construct($params = null) {
316316
if (is_array($params) && count($params) > 0) {
@@ -1071,7 +1071,6 @@ function apache_request_headers()
10711071
if( preg_match($rx_http, $key) )
10721072
{
10731073
$arh_key = preg_replace($rx_http, '', $key);
1074-
$rx_matches = array();
10751074
$rx_matches = explode('_', $arh_key);
10761075
if( count($rx_matches) > 0 and strlen($arh_key) > 2 )
10771076
{
@@ -1084,5 +1083,3 @@ function apache_request_headers()
10841083
return( $arh );
10851084
}
10861085
}
1087-
1088-
?>

0 commit comments

Comments
 (0)