mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
20 lines
290 B
PHP
20 lines
290 B
PHP
<?php namespace Visiosoft\AdvsModule\Adv\Event;
|
|
|
|
use Visiosoft\AdvsModule\Adv\AdvModel;
|
|
|
|
class ChangedStatusAd
|
|
{
|
|
private $ad;
|
|
|
|
public function __construct(AdvModel $ad)
|
|
{
|
|
$this->ad = $ad;
|
|
}
|
|
|
|
public function getAdDetail()
|
|
{
|
|
return $this->ad;
|
|
}
|
|
}
|
|
|