BUGFIX move allowed_actions to private static (#47)

This commit is contained in:
Andrew Aitken-Fincham 2017-08-22 08:06:24 +01:00 committed by Damian Mooyman
parent 7204c4792d
commit 9dcfc4f337
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class DevCheckController extends Controller
/**
* @var array
*/
public static $allowed_actions = [
private static $allowed_actions = [
'index'
];

View File

@ -15,7 +15,7 @@ class DevHealthController extends Controller
/**
* @var array
*/
public static $allowed_actions = [
private static $allowed_actions = [
'index'
];