TestClassWithManyProperties.php 557 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. class Zend_CodeGenerator_Php_TestClassWithManyProperties
  3. {
  4. const FOO = 'foo';
  5. public static $fooStaticProperty = null;
  6. public $fooProperty = true;
  7. protected static $_barStaticProperty = 1;
  8. protected $_barProperty = 1.1115;
  9. private static $_bazStaticProperty = self::FOO;
  10. private $_bazProperty = array(true, false, true);
  11. protected $_complexType = array(
  12. 5,
  13. 'one' => 1,
  14. 'two' => '2',
  15. array(
  16. 'bar',
  17. 'baz',
  18. //PHP_EOL
  19. )
  20. );
  21. }