/**
  * @inheritdoc
  */
 public function __construct($className)
 {
     // We need to do this, because className is private in ParseQuery class.
     // We'll use the class name as a part of the cacheKey
     $this->className = $className;
     return parent::__construct($className);
 }