Files
2020-09-27 22:08:07 -04:00

24 lines
472 B
PHP

<?php
namespace ScummVM\Objects;
/**
* The Platform object represents the named representation of a game platform
*/
class Series extends DataObject
{
private $name;
/* Article object constructor. */
public function __construct($data)
{
parent::__construct($data);
$this->name = $this->assignFromArray('name', $data, true);
}
/* Get the platform name. */
public function getName()
{
return $this->name;
}
}