1<?php
2interface AnInterfaceWithReturnType
3{
4    public function returnAnArray(): array;
5}
6