| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/ravel.network/public/wp-content/plugins/independent-analytics/IAWP/Tables/Groups/ |
Upload File : |
<?php
namespace IAWP\Tables\Groups;
use IAWP\Rows\Rows;
use IAWP\Statistics\Statistics;
/** @internal */
class Group
{
private $id;
private $singular;
private $title_column;
private $rows_class;
private $statistics_class;
public function __construct(string $id, string $singular, string $title_column, string $rows_class, string $statistics_class)
{
$this->id = $id;
$this->singular = $singular;
$this->title_column = $title_column;
$this->rows_class = $rows_class;
$this->statistics_class = $statistics_class;
}
public function id() : string
{
return $this->id;
}
public function singular() : string
{
return $this->singular;
}
public function title_column() : string
{
return $this->title_column;
}
/**
* @return class-string<Rows>
*/
public function rows_class() : string
{
return $this->rows_class;
}
/**
* @return class-string<Statistics>
*/
public function statistics_class() : string
{
return $this->statistics_class;
}
}