Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 1335 / bootstrap1335.php
1 <?php
2 $globalString                          = 'Hello';
3 $globalIntTruthy                       = 1;
4 $globalIntFalsey                       = 0;
5 $globalFloat                           = 1.123;
6 $globalBoolTrue                        = true;
7 $globalBoolFalse                       = false;
8 $globalNull                            = null;
9 $globalArray                           = array('foo');
10 $globalNestedArray                     = array(array('foo'));
11 $globalObject                          = (object) array('foo'=> 'bar');
12 $globalObjectWithBackSlashString       = (object) array('foo'=> 'back\\slash');
13 $globalObjectWithDoubleBackSlashString = (object) array('foo'=> 'back\\\\slash');