Skip to content

Commit

Permalink
[BUGFIX] Remove not existing getUid and getLocation (#988)
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrycze-volk committed Jul 21, 2023
1 parent c5a9268 commit c4a6fd0
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions Classes/Common/Doc.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* @access public
* @property int $cPid This holds the PID for the configuration
* @property-read bool $hasFulltext Are there any fulltext files available?
* @property-read string $location This holds the documents location
* @property-read array $metadataArray This holds the documents' parsed metadata array
* @property-read int $numPages The holds the total number of pages
* @property-read int $parentId This holds the UID of the parent document or zero if not multi-volumed
Expand Down Expand Up @@ -953,18 +952,6 @@ protected function _getHasFulltext()
return $this->hasFulltext;
}

/**
* This returns $this->location via __get()
*
* @access protected
*
* @return string The location of the document
*/
protected function _getLocation()
{
return $this->location;
}

/**
* Format specific part of building the document's metadata array
*
Expand Down Expand Up @@ -1165,18 +1152,6 @@ protected abstract function _getThumbnail($forceReload = false);
*/
protected abstract function _getToplevelId();

/**
* This returns $this->uid via __get()
*
* @access protected
*
* @return mixed The UID or the URL of the document
*/
protected function _getUid()
{
return $this->uid;
}

/**
* This sets $this->cPid via __set()
*
Expand Down

0 comments on commit c4a6fd0

Please sign in to comment.