Skip to content

Commit

Permalink
Dev Fixed Scrutinizer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 9, 2018
1 parent ec91ea8 commit 5f5180c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion application/controllers/AdminController.php
Expand Up @@ -203,7 +203,7 @@ public function getActionClasses()
'index' => 'index',
'labels' => 'labels',
'participants' => 'participantsaction',
'pluginmanager' => 'pluginmanager',
'pluginmanager' => 'PluginManagerController',
'printablesurvey' => 'printablesurvey',
'questiongroups' => 'questiongroups',
'questions' => 'questions',
Expand Down
Expand Up @@ -2,7 +2,7 @@

/**
*/
class PluginManager extends Survey_Common_Action
class PluginManagerController extends Survey_Common_Action
{
public function init()
{
Expand Down
10 changes: 0 additions & 10 deletions application/libraries/admin/settingsstorage.php
Expand Up @@ -62,14 +62,4 @@ public static function isRegistered($index)
return self::$_instance->offsetExists($index);
}

/**
* Workaround for http://bugs.php.net/bug.php?id=40442 (ZF-960).
*/
public function offsetExists($index)
{
return array_key_exists($index, $this);
}


}
?>

0 comments on commit 5f5180c

Please sign in to comment.