1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +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

View File

@@ -8,24 +8,24 @@ class UsesMagic {
public $c = 3;
private $priv = 'secret';
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 UsesMagic;