| 1 | <?php |
||
| 13 | class LaunchScreenAdvertsController extends Controller |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var LaunchScreenAdvertRepositoryInterface |
||
| 17 | */ |
||
| 18 | private $adverts; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * TopicController constructor. |
||
| 22 | * |
||
| 23 | * @param LaunchScreenAdvertRepositoryInterface $repository |
||
| 24 | */ |
||
| 25 | public function __construct(LaunchScreenAdvertRepositoryInterface $repository) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * 获取所有广告数据. |
||
| 32 | */ |
||
| 33 | public function index() |
||
| 39 | } |
||
| 40 |