Skip to content
4 changes: 2 additions & 2 deletions CommonLogic/DataSheets/Mappings/LookupMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ protected function setLookupColumn($string) : LookupMapping
* {@inheritDoc}
* @see \exface\Core\Interfaces\DataSheets\LookupMappingInterface::getToExpression()
*/
protected function getToExpression() : ExpressionInterface
public function getToExpression() : ExpressionInterface
{
return $this->toExpression;
}
Expand Down Expand Up @@ -579,7 +579,7 @@ protected function setMatches(UxonObject $uxon) : LookupMapping
* Returns an array of matches - each providing pairs of expressions in the from-sheet and in the lookup-sheet
* @return void
*/
protected function getMatches() : array
public function getMatches() : array
{
if ($this->matchesUxon === null) {
return [];
Expand Down