Skip to content

Commit ca9d938

Browse files
More return type fixes
1 parent 6fa7804 commit ca9d938

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Tests/KernelTest.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,17 +516,20 @@ public function load(array $configs, ContainerBuilder $container)
516516
$container->setParameter('test.extension-registered', true);
517517
}
518518

519-
public function getNamespace()
519+
public function getNamespace(): string
520520
{
521521
return '';
522522
}
523523

524+
/**
525+
* @return false
526+
*/
524527
public function getXsdValidationBasePath()
525528
{
526529
return false;
527530
}
528531

529-
public function getAlias()
532+
public function getAlias(): string
530533
{
531534
return 'test-extension';
532535
}

0 commit comments

Comments
 (0)