kreait / laravel-firebase

A Laravel package for the Firebase PHP Admin SDK
https://github.com/kreait/firebase-php
MIT License
1.05k stars 169 forks source link

Callable functions #194

Open janpansa opened 1 year ago

janpansa commented 1 year ago

Describe the feature you would like to see

I would like to use callable functions (Firebase cloud functions).

Something like this:

$functions = Firebase::functions();
$functions->getHttpsCallable('someCallableFunction')->call(
             [
                 'some' => $data,
                 'more' => $values
             ]
         );

I don't see that this is possible right now with this package.