ENH Add generic types

This commit is contained in:
Guy Sartorelli 2024-01-11 14:19:21 +13:00
parent e504a22c35
commit c779ff227b
No known key found for this signature in database
GPG Key ID: F313E3B9504D496A
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ namespace {
use SilverStripe\CMS\Controllers\ContentController;
/**
* @template T of Page
* @extends ContentController<T>
*/
class PageController extends ContentController
{
/**