<?php interface PaginatorInterface { } class Paginator implements PaginatorInterface { } class BookRepository { use CreatePaginatorTrait; protected function getPaginator(): Paginator { return new Paginator(); } } trait CreatePaginatorTrait { protected function getPaginator(): PaginatorInterface { return new Paginator(); } }
You have javascript disabled. You will not be able to edit any code.