class CovertionPDF
{
private $table = [];
private $html;
private $score;
public static function getHTML($iOrder)
{
$order = self::getPaysystem($iOrder);
$this->table = 'Hello world';
}
}
class CovertionPDF
{
static $table = [];
private $html;
private $score;
public static function getHTML($iOrder)
{
$order = self::getPaysystem($iOrder);
self::$table = 'Hello world';
}
}