for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace eZ\Publish\Core\Persistence\Legacy\Content\UrlAlias\DTO;
* @internal To be used internally by UrlAlias Persistence Handler.
class SwappedLocationProperties
{
public function __construct($id, $parentId)
$this->id = $id;
$this->parentId = $parentId;
}
* @var int
public $id;
public $parentId;
* @var string
public $name;
public $mainLanguageId;
public $autogeneratedId;
* @var bool
public $isAlwaysAvailable;
* Raw database records (entries).
*
* @var array
public $entries;