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;
* Form to load another document (multi page view)
* @package TYPO3
* @subpackage dlf
* @access public
class FormAddDocument extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
* @var string
protected $location = '';
* @return string
public function getLocation(): string
return $this->location;
}
* @param string $location
public function setLocation(string $location): void
$this->location = $location;