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

View File

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