Merge pull request #1111 from alex-dna/fix/controller-name

API Use controller_name static config
This commit is contained in:
Steve Boyd 2021-10-19 10:47:46 +13:00 committed by GitHub
commit 9d5b8c1b8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ class UserDefinedForm extends Page
*/
private static $table_name = 'UserDefinedForm';
public function getControllerName()
{
return UserDefinedFormController::class;
}
/**
* @var string
*/
private static $controller_name = UserDefinedFormController::class;
}