duplicated code
This commit is contained in:
parent
608e18f8c1
commit
20f6947bea
1 changed files with 2 additions and 5 deletions
|
@ -75,9 +75,6 @@ final class Events_Manager extends Event_Transformer {
|
||||||
if ( $em_location->location_state ) {
|
if ( $em_location->location_state ) {
|
||||||
$address['addressRegion'] = $em_location->location_state;
|
$address['addressRegion'] = $em_location->location_state;
|
||||||
}
|
}
|
||||||
if ( $em_location->location_postcode ) {
|
|
||||||
$address['postalCode'] = $em_location->location_postcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
$location->set_address( $address );
|
$location->set_address( $address );
|
||||||
return $location;
|
return $location;
|
||||||
|
@ -124,8 +121,8 @@ final class Events_Manager extends Event_Transformer {
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
public function get_remaining_attendee_capacity() {
|
public function get_remaining_attendee_capacity() {
|
||||||
$em_bookings = $this->em_event->get_bookings()->get_bookings();
|
$em_bookings_count = $this->get_participant_count();
|
||||||
$remaining_attendee_capacity = $this->em_event->event_spaces - count( $em_bookings->bookings );
|
$remaining_attendee_capacity = $this->em_event->event_spaces - $em_bookings_count;
|
||||||
return $remaining_attendee_capacity;
|
return $remaining_attendee_capacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue