diff --git a/Neos.Flow/Classes/Composer/InstallerScripts.php b/Neos.Flow/Classes/Composer/InstallerScripts.php index d96b13140e..abdea01656 100644 --- a/Neos.Flow/Classes/Composer/InstallerScripts.php +++ b/Neos.Flow/Classes/Composer/InstallerScripts.php @@ -66,7 +66,7 @@ public static function postPackageUpdateAndInstall(PackageEvent $event) { $operation = $event->getOperation(); if (!$operation instanceof InstallOperation && !$operation instanceof UpdateOperation) { - throw new Exception\UnexpectedOperationException('Handling of operation with type "' . $operation->getJobType() . '" not supported', 1348750840); + throw new Exception\UnexpectedOperationException('Handling of operation of type "' . get_class($operation) . '" not supported', 1348750840); } $package = ($operation instanceof InstallOperation) ? $operation->getPackage() : $operation->getTargetPackage(); $packageExtraConfig = $package->getExtra();