php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #60536
Patch property008.phpt revision 2011-12-16 16:46 UTC by gron@php.net
Patch property007.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch property006.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch property005.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch bug60536.phpt revision 2011-12-16 15:57 UTC by laruence@php.net
Patch bug60536.patch revision 2011-12-16 15:54 UTC by laruence@php.net

Patch property008.phpt for Scripting Engine problem Bug #60536

Patch version 2011-12-16 16:46 UTC

Return to Bug #60536 | Download this patch
Patch Revisions:

Developer: gron@php.net

--TEST--
Private 
--FILE--
<?php
error_reporting(E_ALL | E_STRICT);

class BaseWithPropA {
  private $hello = 0;
}

trait AHelloProperty {
  private $hello = 0;
}

class BaseWithTPropB {
    use AHelloProperty;
}

class SubclassA extends BaseWithPropA {
    use AHelloProperty;
}

class SubclassB extends BaseWithTPropB {
    use AHelloProperty;
}

$a = new SubclassA;
var_dump($a);

$b = new SubclassB;
var_dump($b);

?>
--EXPECTF--	
object(SubclassA)#1 (2) {
  ["hello":"SubclassA":private]=>
  int(0)
  ["hello":"BaseWithPropA":private]=>
  int(0)
}
object(SubclassB)#2 (2) {
  ["hello":"SubclassB":private]=>
  int(0)
  ["hello":"BaseWithTPropB":private]=>
  int(0)
}
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 04:01:31 2024 UTC