1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

Oops, don't declare a method public twice.

This commit is contained in:
Thomas Tanghus 2013-05-19 02:39:16 +02:00
parent 9410affdc0
commit fc9dfdf192

View File

@ -66,7 +66,7 @@ class App {
* @param string $name
* @return \Backend\AbstractBackend
*/
public public function getBackend($name, $user = null) {
public function getBackend($name, $user = null) {
$name = $name ? $name : 'local';
if (isset(self::$backendClasses[$name])) {
return new self::$backendClasses[$name]($user);