Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 6
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2error_reporting(0);
3if ( $_REQUEST['header'] ) {
4    if ( $_REQUEST['header'] == "ecma" ) {
5        header("Content-type: application/ecmascript");
6    } else {
7        header("Content-type: text/javascript");
8    }
9}
10?>
11ok( true, "Script executed correctly." );