Foo.php 343 B

123456789101112131415
  1. <?php
  2. class Zend_Application_BootstrapTest_Resource_Foo extends Zend_Application_Resource_ResourceAbstract
  3. {
  4. public $someArbitraryKey;
  5. public function init()
  6. {
  7. $this->getBootstrap()->executedFooResource = true;
  8. }
  9. public function setSomeArbitraryKey($value)
  10. {
  11. $this->someArbitraryKey = $value;
  12. }
  13. }