1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 23:18:13 +02:00

Trim trailing whitespace in *.phpt

This commit is contained in:
Peter Kokot
2018-10-14 15:37:22 +02:00
parent afd534f163
commit 7af945e271
6463 changed files with 17668 additions and 17677 deletions
+6 -6
View File
@@ -11,26 +11,26 @@ class C {
}
class UsesMagic extends ArrayObject {
public $b = "This should not be in the storage";
function __get($name) {
function __get($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __set($name, $value) {
function __set($name, $value) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __isset($name) {
function __isset($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __unset($name) {
function __unset($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
}
$obj = new C;
$ao = new UsesMagic($obj);