1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Merge remote-tracking branch 'exreaction/ticket/11257' into develop

* exreaction/ticket/11257:
  [ticket/11257] Do not require set_name() method to exist
This commit is contained in:
Igor Wiedler
2012-12-09 19:02:04 +01:00
2 changed files with 17 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ class phpbb_di_service_collection extends ArrayObject
public function add($name)
{
$task = $this->container->get($name);
$task->set_name($name);
$this->offsetSet($name, $task);
}
}