From bbb943731153657a9fee5090563f0588f06d1102 Mon Sep 17 00:00:00 2001 From: Carlo Venco <71378271+vnccrl78@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:38:12 +0200 Subject: [PATCH] Using FQN instead of aliases Signed-off-by: Carlo Venco <71378271+vnccrl78@users.noreply.github.com> --- src/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Input.php b/src/Input.php index 08ffb7e9..faf49f66 100644 --- a/src/Input.php +++ b/src/Input.php @@ -441,7 +441,7 @@ protected function injectNotEmptyValidator() $this->notEmptyValidator = true; if (class_exists(AbstractPluginManager::class)) { - $chain->prependByName('NotEmpty', [], true); + $chain->prependByName(NotEmpty::class, [], true); return; }