mirror of
https://github.com/openclassify/openclassify.git
synced 2026-03-09 17:55:27 -05:00
17 lines
339 B
PHP
17 lines
339 B
PHP
<?php namespace Visiosoft\AdvsModule\Adv\Command;
|
|
|
|
use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface;
|
|
|
|
class LatestAds
|
|
{
|
|
|
|
/**
|
|
* @param AdvRepositoryInterface $groups
|
|
* @return |null
|
|
*/
|
|
public function handle(AdvRepositoryInterface $advRepository)
|
|
{
|
|
return $advRepository->latestAds();
|
|
}
|
|
}
|