18 lines
286 B
PHP
18 lines
286 B
PHP
<?php
|
|
|
|
/**
|
|
* Subclass for representing a row from the 'app_ads_tracker_debug' table.
|
|
*
|
|
*
|
|
*
|
|
* @package plugins.appAdsTrackerPlugin.lib.model
|
|
*/
|
|
class AdsTrackerDebug extends BaseAdsTrackerDebug
|
|
{
|
|
public function __toString()
|
|
{
|
|
return $this->getId();
|
|
}
|
|
|
|
}
|