Skip to content

Instantly share code, notes, and snippets.

@dawehner
Created October 11, 2016 19:03
Show Gist options
  • Select an option

  • Save dawehner/8e7889754eaa06801f1d2538bbccc602 to your computer and use it in GitHub Desktop.

Select an option

Save dawehner/8e7889754eaa06801f1d2538bbccc602 to your computer and use it in GitHub Desktop.
<?php
/**
* @param \Drupal\Core\Url[][] $urlss
*/
function foo($urlss) {
foreach ($urlss as $urls) {
foreach ($urls as $url) {
$url->getOptions();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment