2
0

BootstrapBaseCircularDependency.php 398 B

123456789101112131415161718192021
  1. <?php
  2. class BootstrapBaseCircularDependency extends Zend_Application_Bootstrap_BootstrapAbstract
  3. {
  4. public $complete = false;
  5. public function run()
  6. {
  7. }
  8. public function _initFirst()
  9. {
  10. $this->bootstrap('Second');
  11. $this->complete = true;
  12. }
  13. public function _initSecond()
  14. {
  15. $this->bootstrap('First');
  16. $this->complete = true;
  17. }
  18. }