Localisation updates from https://translatewiki.net.
[mediawiki.git] / tests / phpunit / includes / shell / bin / stdout_stderr.php
blob7f07269b67ab961e67ab009037c76ac0c788513d
1 <?php
3 if ( PHP_SAPI !== 'cli' ) {
4 exit( 1 );
7 file_put_contents( "php://stdout", $argv[1] );
8 if ( isset( $argv[2] ) ) {
9 file_put_contents( "php://stderr", $argv[2] );