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
Contents
Parameters
- $value
-
(int|null) (Optional) This will overwrite the old value
Default value: null
Return
(int)
Source
File: src/Tribe/Ticket_Object.php
public function qty_pending( $value = null ) {
return $this->qty_getter_setter( $this->qty_pending, $value );
}