You are here

protected function FragmentListener::getLocalIpAddresses in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/EventListener/FragmentListener.php \Symfony\Component\HttpKernel\EventListener\FragmentListener::getLocalIpAddresses()

Return value

string[]

Deprecated

since version 2.3.19, to be removed in 3.0.

File

vendor/symfony/http-kernel/EventListener/FragmentListener.php, line 95

Class

FragmentListener
Handles content fragments represented by special URIs.

Namespace

Symfony\Component\HttpKernel\EventListener

Code

protected function getLocalIpAddresses() {
  @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.3.19 and will be removed in 3.0.', E_USER_DEPRECATED);
  return array(
    '127.0.0.1',
    'fe80::1',
    '::1',
  );
}