The project adheres to some unique formatting rules. Can you ensure that any code you create for this project conforms to the style guide outlined below: 1. All variables should be three letter abbreviations tst. 2. All comments should be removed 3. if( and foreach( should have the bracket immediately after there declaration not with a space if( NOT if ( 4. Functions & loops should be formatted with the curly brackets on a new line and tabbed to be indented under the function/loop name. [EXAMPLE] // My function function test() { echo tester; echo testerToday; } becomes... //my function function test() { echo tst; echo tod; }