Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

| * |

  Show Posts
Pages: [1]
1  PureMVC Manifold / Bug Report / [ FIXED ] - Error in MacroCommand and Notifier on: January 01, 2009, 02:11:48
the Notifier is calling the parent::__construct() but the Notifier doesn't extend any class

  public function __construct()
  {
    $this->facade = Facade::getInstance();
    parent::__construct();
  }

The MacroCommand is missing the parent::__construct() and I was not able reference to the facade when i tried to extend the MacroCommand.

I removed the parent::__construct() from Notifier and added it to MacroCommand.

I could have done something wrong, but since I've made the changes it has been working fine.

Nice work on the 1.0.1 release
 
--matt

Pages: [1]