Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmisek committed Mar 18, 2019
1 parent 9c0ad9c commit 24822c1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/classes/overloading_010.php
Expand Up @@ -10,14 +10,6 @@ public function getName() {
}
}

class A extends B {
public function getPropertyValue($object) { return __METHOD__; }
}

abstract class B extends C implements I {

}

class C {

}
Expand All @@ -26,6 +18,14 @@ interface I {
public function getPropertyValue($containingValue);
}

abstract class B extends C implements I {

}

class A extends B {
public function getPropertyValue($object) { return __METHOD__; }
}

echo (new SessionBagProxy)->getName();
echo (new A)->getPropertyValue(NULL);

Expand Down

0 comments on commit 24822c1

Please sign in to comment.