explode correctly str

This commit is contained in:
Cyprian Beauvois 2019-07-17 16:50:33 +02:00
parent f2de894540
commit 204de1964c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class BillingController extends AbstractController
$serviceToCall = $this->container->getParameter('payment_confirmation_service');
list($service, $function) = str_split($serviceToCall, '::');
list($service, $function) = explode('::', $serviceToCall);
$srv = null;