Remove file Reftest.php

Looks like an accident.

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-16 11:39:15 +02:00
parent 05e0568ef1
commit 3cf7e93a10
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
<?php
class Test
{
protected $filters = array();
public function work()
{
foreach ($this->getFilters() as $key => &$value) {
$value = 1;
}
}
public function &getFilters()
{
return $this->filters;
}
}
$x = new Test();
$b =& $x->getFilters();
$b[1] = 0;
var_dump($b, $x->getFilters());die;