Lines Matching refs:new
426 $new = clone $this;
427 $new->scheme = $scheme;
428 $new->composedComponents = null;
429 $new->removeDefaultPort();
430 $new->validateState();
432 return $new;
446 $new = clone $this;
447 $new->userInfo = $info;
448 $new->composedComponents = null;
449 $new->validateState();
451 return $new;
462 $new = clone $this;
463 $new->host = $host;
464 $new->composedComponents = null;
465 $new->validateState();
467 return $new;
478 $new = clone $this;
479 $new->port = $port;
480 $new->composedComponents = null;
481 $new->removeDefaultPort();
482 $new->validateState();
484 return $new;
495 $new = clone $this;
496 $new->path = $path;
497 $new->composedComponents = null;
498 $new->validateState();
500 return $new;
511 $new = clone $this;
512 $new->query = $query;
513 $new->composedComponents = null;
515 return $new;
526 $new = clone $this;
527 $new->fragment = $fragment;
528 $new->composedComponents = null;
530 return $new;