Skip to content

Commit

Permalink
issue#1479 revert changes for afup_forum_sponsors_tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Jun 29, 2024
1 parent 9e5f883 commit c8101b7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 66 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,6 @@ public static function initMetadata(SerializerFactoryInterface $serializerFactor
'type' => 'bool',
'serializer' => Boolean::class
])
->addField([
'columnName' => 'transport_mode',
'fieldName' => 'transportMode',
'type' => 'int',
])
->addField([
'columnName' => 'transport_distance',
'fieldName' => 'transportDistance',
'type' => 'int'
])
;

return $metadata;
Expand Down
44 changes: 0 additions & 44 deletions sources/AppBundle/Event/Model/SponsorTicket.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,48 +299,4 @@ public function setQrCodesScannerAvailable($qrCodesScannerAvailable)
$this->qrCodesScannerAvailable = $qrCodesScannerAvailable;
return $this;
}

/**
* @return null|string
*/
public function getTransportMode()
{
return $this->transportMode;
}

/**
* @param null|string $transportMode
*
* @return $this
*/
public function setTransportMode($transportMode)
{
$this->propertyChanged('transportMode', $this->transportMode, $transportMode);

$this->transportMode = $transportMode;

return $this;
}

/**
* @return null|int
*/
public function getTransportDistance()
{
return $this->transportDistance;
}

/**
* @param null|int $transportDistance
*
* @return $this
*/
public function setTransportDistance($transportDistance)
{
$this->propertyChanged('transportDistance', $this->transportDistance, $transportDistance);

$this->transportDistance = $transportDistance;

return $this;
}
}

0 comments on commit c8101b7

Please sign in to comment.