Skip to content

Commit a21edc5

Browse files
committedJul 31, 2023
Remove unnecessary parentheses around language constructs in mysqli
1 parent c1a0852 commit a21edc5

File tree

399 files changed

+1121
-1121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+1121
-1121
lines changed
 

‎ext/mysqli/tests/001.phpt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ mysqli connect
44
mysqli
55
--SKIPIF--
66
<?php
7-
require_once('skipifconnectfailure.inc');
7+
require_once 'skipifconnectfailure.inc';
88
?>
99
--FILE--
1010
<?php
11-
require_once("connect.inc");
11+
require_once 'connect.inc';
1212

1313
$test = "";
1414

‎ext/mysqli/tests/002.phpt

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ mysqli bind_result 1
44
mysqli
55
--SKIPIF--
66
<?php
7-
require_once('skipifconnectfailure.inc');
7+
require_once 'skipifconnectfailure.inc';
88
?>
99
--FILE--
1010
<?php
11-
require_once("connect.inc");
11+
require_once 'connect.inc';
1212

1313
/*** test mysqli_connect 127.0.0.1 ***/
1414
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
@@ -49,7 +49,7 @@ require_once('skipifconnectfailure.inc');
4949
?>
5050
--CLEAN--
5151
<?php
52-
require_once("connect.inc");
52+
require_once 'connect.inc';
5353
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
5454
printf("[c001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
5555

0 commit comments

Comments
 (0)