Remove job items from the cart.
array $job_item_ids: Job items to be removed.
public function removeJobItems(array $job_item_ids) { $this->cart = array_diff($this->cart, $job_item_ids); }