public function TestUrl::toString in Search API 8
Generates the string URL representation for this Url object.
For an external URL, the string will contain the input plus any query string or fragment specified by the options array.
If this Url object was constructed from a Drupal route or from an internal URI (URIs using the internal:, base:, or entity: schemes), the returned string will either be a relative URL like /node/1 or an absolute URL like http://example.com/node/1 depending on the options array, plus any specified query string or fragment.
Parameters
bool $collect_bubbleable_metadata: (optional) Defaults to FALSE. When TRUE, both the generated URL and its associated bubbleable metadata are returned.
Return value
string|\Drupal\Core\GeneratedUrl A string URL. When $collect_bubbleable_metadata is TRUE, a GeneratedUrl object is returned, containing the generated URL plus bubbleable metadata.
Overrides Url::toString
File
- tests/
src/ Unit/ TestUrl.php, line 26
Class
- TestUrl
- Provides a mock URL object.
Namespace
Drupal\Tests\search_api\UnitCode
public function toString($collect_bubbleable_metadata = FALSE) {
UnitTestCase::assertFalse($collect_bubbleable_metadata);
if (!empty($this->options['absolute'])) {
return 'http://www.example.com' . $this->internalPath;
}
return $this->internalPath;
}