Tribe__Tickets__Ticket_Object::qty_sold( int|null $value = null )

Method to manage the protected qty_sold property of the Object Prevents setting qty_sold lower then zero


Parameters

$value

(int|null) (Optional) This will overwrite the old value

Default value: null


Top ↑

Return

(int)


Top ↑

Source

File: src/Tribe/Ticket_Object.php

		public function qty_sold( $value = null ) {
			return $this->qty_getter_setter( $this->qty_sold, $value );
		}