PageRenderTime 49ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/application/models/TestObject.php

https://bitbucket.org/dstockto/zt_tutorial3
PHP | 27 lines | 19 code | 3 blank | 5 comment | 0 complexity | aee9b2d33d31c6562b9ef1058ee96dfd MD5 | raw file
  1. <?php
  2. /**
  3. * @author davidstockton
  4. *
  5. *
  6. */
  7. class Application_Model_TestObject
  8. {
  9. public $foo;
  10. public $bar;
  11. protected $protFoo;
  12. protected $protBar;
  13. private $privFoo;
  14. private $privBar;
  15. public function __construct()
  16. {
  17. $this->foo = uniqid();
  18. $this->bar = uniqid();
  19. $this->protFoo = uniqid();
  20. $this->protBar = uniqid();
  21. $this->privFoo = uniqid();
  22. $this->privBar = uniqid();
  23. }
  24. }