Changeset 49193 for trunk/tests/phpunit/includes/utils.php
- Timestamp:
- 10/18/2020 05:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/utils.php
r49184 r49193 29 29 } 30 30 31 return trim( join( "\n", $result ) );31 return trim( implode( "\n", $result ) ); 32 32 } 33 33 … … 276 276 $a[] = $k . '="' . $v . '"'; 277 277 } 278 return join( ' ', $a );278 return implode( ' ', $a ); 279 279 } 280 280 … … 333 333 } 334 334 } 335 return join( "\n", $out ) . "\n";335 return implode( "\n", $out ) . "\n"; 336 336 } 337 337
Note: See TracChangeset
for help on using the changeset viewer.