*/ public function start(): Builder; /** * Find the entity of the given ID or return null if not found. */ public function findVisibleById(int $id): ?Entity; /** * Start a query for items that are visible, with selection * configured for list display of this item. * @return Builder */ public function visibleForList(): Builder; /** * Start a query for items that are visible, with selection * configured for using the content of the items found. * @return Builder */ public function visibleForContent(): Builder; }