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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user