public function registerCloudStorageStreamWrapperIfPossible()

in src/ProjectContext.php [86:95]


    public function registerCloudStorageStreamWrapperIfPossible()
    {
        if (class_exists(StreamWrapper::class)) {
            if (!in_array('gs', stream_get_wrappers())) {
                // Create a default GCS client and register the stream wrapper
                $storage = new StorageClient();
                StreamWrapper::register($storage);
            }
        }
    }