Issue #2080713 by chertzog: Remove Unused local variable $uuid from /core/modules/shortcut/lib/Drupal/shortcut/Tests/ShortcutTestBase.php.

8.0.x
Nathaniel Catchpole 2013-12-02 12:49:41 +00:00
parent 2ffec8313b
commit 9f671f539a
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ abstract class ShortcutTestBase extends WebTestBase {
*/
function getShortcutInformation($set, $key) {
$info = array();
foreach ($set->links as $uuid => $link) {
foreach ($set->links as $link) {
$info[] = $link->{$key};
}
return $info;