Completed
Push — master ( c66703...668741 )
by Fabien
03:49
created

QuerySettings::initializeObject()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Fab\Vidi\Persistence;
3
4
/*
5
 * This file is part of the Fab/Vidi project under GPLv2 or later.
6
 *
7
 * For the full copyright and license information, please read the
8
 * LICENSE.md file that was distributed with this source code.
9
 */
10
use TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings;
11
12
/**
13
 * This class was used to set "respectStoragePage" before TYPO3 CMS 8 migration.
14
 * Feature was simply removed and permantely set to "false".
15
 * Class could be removed at one point
16
 *
17
 * Query settings. This class is NOT part of the FLOW3 API.
18
 * It reflects the settings unique to TYPO3 4.x.
19
 *
20
 * @api
21
 */
22
class QuerySettings extends Typo3QuerySettings
23
{
24
25
}
26