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

Method to manage the protected qty_pending property of the Object Prevents setting qty_pending 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_pending( $value = null ) {
			return $this->qty_getter_setter( $this->qty_pending, $value );
		}