Merge "mediawiki.api: Remove console warning for legacy token type"
[mediawiki.git] / tests / phpunit / includes / shell / bin / echo_stdin.php
blobbe6207ec9aee7082bdb18670600c7d063a5b46e1
1 <?php
3 if ( PHP_SAPI !== 'cli' ) {
4 exit( 1 );
7 $input_data = stream_get_contents( STDIN );
8 echo $input_data;