for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
namespace Kitodo\Dlf\Domain\Model;
* (Basket Plugin) A basket that is bound to a frontend session.
* @package TYPO3
* @subpackage dlf
* @access public
class PageSelectForm extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
* @var integer
protected $id;
* @var string
protected $recordId;
protected $double;
protected $page;
* @return int
public function getId(): int
return $this->id;
}
* @param int $id
public function setId(int $id): void
$this->id = $id;
* @return string
public function getRecordId(): string
return $this->recordId;
* @param string $recordId
public function setRecordId(string $recordId): void
$this->recordId = $recordId;
public function getDouble(): string
return $this->double;
* @param string $double
public function setDouble(string $double): void
$this->double = $double;
public function getPage(): int
return $this->page;
* @param int $page
public function setPage(int $page): void
$this->page = $page;