*/ public $sqlTableAliases = []; /** * Whether this persistent context is considering limit operations applied to the selection queries * * @var bool */ public $handlesLimits; /** * @param bool $handlesLimits */ public function __construct( ClassMetadata $class, ResultSetMapping $rsm, $handlesLimits ) { $this->class = $class; $this->rsm = $rsm; $this->handlesLimits = (bool) $handlesLimits; } }