Skip to content

Commit

Permalink
Merge pull request #14 from elazar/master
Browse files Browse the repository at this point in the history
Breeze/Application::getInstance() should be static
  • Loading branch information
whatthejeff committed Jul 19, 2011
2 parents 4caae2b + 42cd3f2 commit 32b5afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Breeze/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,7 @@ public function __construct(Configurations $configurations = null)
*
* @return Breeze\Application
*/
public function getInstance($name, Configurations $configurations = null)
public static function getInstance($name, Configurations $configurations = null)
{
if (!isset(self::$_instances[$name])) {
self::$_instances[$name] = new self($configurations);
Expand Down

0 comments on commit 32b5afd

Please sign in to comment.