1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

Trim trailing whitespace in *.phpt

This commit is contained in:
Peter Kokot
2018-10-14 17:23:43 +02:00
parent cc7215f48f
commit 17ccbeec32
6435 changed files with 17425 additions and 17434 deletions
@@ -4,11 +4,11 @@ SPL: Ensure access to non-visible properties falls back to dimension access with
<?php
class C extends ArrayObject {
private $x = 'secret';
static function go($c) {
var_dump($c->x);
}
}
}
$c = new C(array('x'=>'public'));