Neos\Flow\ResourceManagement\Streams\StreamWrapperAdapter::getStreamWrapperImplementationClassNames PHP Method

getStreamWrapperImplementationClassNames() public static method

Returns all class names implementing the StreamWrapperInterface.
public static getStreamWrapperImplementationClassNames ( Neos\Flow\ObjectManagement\ObjectManagerInterface $objectManager ) : array
$objectManager Neos\Flow\ObjectManagement\ObjectManagerInterface
return array Array of stream wrapper implementations
    public static function getStreamWrapperImplementationClassNames(ObjectManagerInterface $objectManager)
    {
        return $objectManager->get(ReflectionService::class)->getAllImplementationClassNamesForInterface(StreamWrapperInterface::class);
    }