Renaming internal test class to help auto-completion

This commit is contained in:
Ryan Weaver 2018-07-27 10:58:22 -04:00
parent afb17aba09
commit b5ffb305a7
1 changed files with 3 additions and 3 deletions

View File

@ -146,8 +146,8 @@ class ControllerResolverTest extends TestCase
public function getStaticControllers()
{
return array(
array(AbstractController::class.'::staticAction', 'foo'),
array(array(AbstractController::class, 'staticAction'), 'foo'),
array(TestAbstractController::class.'::staticAction', 'foo'),
array(array(TestAbstractController::class, 'staticAction'), 'foo'),
array(PrivateConstructorController::class.'::staticAction', 'bar'),
array(array(PrivateConstructorController::class, 'staticAction'), 'bar'),
);
@ -238,7 +238,7 @@ class InvokableController
}
}
abstract class AbstractController
abstract class TestAbstractController
{
public static function staticAction()
{