mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-15 19:52:11 -05:00
22 lines
304 B
PHP
22 lines
304 B
PHP
<?php namespace Visiosoft\AdvsModule\Adv\Event;
|
|
|
|
class DeletedAd
|
|
{
|
|
private $ad;
|
|
|
|
public function __construct($ad)
|
|
{
|
|
$this->ad = $ad;
|
|
}
|
|
|
|
public function getAdDetail()
|
|
{
|
|
return $this->ad;
|
|
}
|
|
|
|
public function getEntry()
|
|
{
|
|
return $this->ad;
|
|
}
|
|
}
|