===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-guzzlehttp-promises-1.4.0/CHANGELOG.md-8-- Support for PHP 8
php-guzzlehttp-promises-1.4.0/CHANGELOG.md:9:- Optional `$recursive` flag to `all`
php-guzzlehttp-promises-1.4.0/CHANGELOG.md-10-- Replaced functions by static methods
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-42-Callbacks are registered with the `then` method by providing an optional 
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:43:`$onFulfilled` followed by an optional `$onRejected` function.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-44-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-69-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:70:Promises are fulfilled using the `resolve($value)` method. Resolving a promise
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-71-with any value other than a `GuzzleHttp\Promise\RejectedPromise` will trigger
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-72-all of the onFulfilled callbacks (resolving a promise with a rejected promise
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:73:will reject the promise and trigger the `$onRejected` callbacks).
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-74-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-127-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:128:When a promise is rejected, the `$onRejected` callbacks are invoked with the
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-129-rejection reason.
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-144-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:145:If an exception is thrown in an `$onRejected` callback, subsequent
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:146:`$onRejected` callbacks are invoked with the thrown exception as the reason.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-147-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-161-You can also forward a rejection down the promise chain by returning a
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:162:`GuzzleHttp\Promise\RejectedPromise` in either an `$onFulfilled` or
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:163:`$onRejected` callback.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-164-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-178-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:179:If an exception is not thrown in a `$onRejected` callback and the callback
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:180:does not return a rejected promise, downstream `$onFulfilled` callbacks are
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:181:invoked using the value returned from the `$onRejected` callback.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-182-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-290-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:291:When creating a promise object, you can provide an optional `$waitFn` and
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:292:`$cancelFn`. `$waitFn` is a function that is invoked with no arguments and is
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:293:expected to resolve the promise. `$cancelFn` is a function with no arguments
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-294-that is expected to cancel the computation of a promise. It is invoked when the
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-314-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:315:- `then(callable $onFulfilled, callable $onRejected) : PromiseInterface`
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-316-  
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-318-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:319:- `otherwise(callable $onRejected) : PromiseInterface`
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-320-  
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-322-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:323:- `wait($unwrap = true) : mixed`
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-324-
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-326-  
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:327:  `$unwrap` controls whether or not the value of the promise is returned for a
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-328-  fulfilled promise or if an exception is thrown if the promise is rejected.
##############################################
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-342-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:343:- `resolve($value)`
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-344-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:345:  Fulfills the promise with the given `$value`.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-346-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:347:- `reject($reason)`
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-348-
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md:349:  Rejects the promise with the given `$reason`.
php-guzzlehttp-promises-1.4.0/.pc/0003-Fix-autoload.php-location.patch/README.md-350-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-42-Callbacks are registered with the `then` method by providing an optional 
php-guzzlehttp-promises-1.4.0/README.md:43:`$onFulfilled` followed by an optional `$onRejected` function.
php-guzzlehttp-promises-1.4.0/README.md-44-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-69-
php-guzzlehttp-promises-1.4.0/README.md:70:Promises are fulfilled using the `resolve($value)` method. Resolving a promise
php-guzzlehttp-promises-1.4.0/README.md-71-with any value other than a `GuzzleHttp\Promise\RejectedPromise` will trigger
php-guzzlehttp-promises-1.4.0/README.md-72-all of the onFulfilled callbacks (resolving a promise with a rejected promise
php-guzzlehttp-promises-1.4.0/README.md:73:will reject the promise and trigger the `$onRejected` callbacks).
php-guzzlehttp-promises-1.4.0/README.md-74-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-127-
php-guzzlehttp-promises-1.4.0/README.md:128:When a promise is rejected, the `$onRejected` callbacks are invoked with the
php-guzzlehttp-promises-1.4.0/README.md-129-rejection reason.
##############################################
php-guzzlehttp-promises-1.4.0/README.md-144-
php-guzzlehttp-promises-1.4.0/README.md:145:If an exception is thrown in an `$onRejected` callback, subsequent
php-guzzlehttp-promises-1.4.0/README.md:146:`$onRejected` callbacks are invoked with the thrown exception as the reason.
php-guzzlehttp-promises-1.4.0/README.md-147-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-161-You can also forward a rejection down the promise chain by returning a
php-guzzlehttp-promises-1.4.0/README.md:162:`GuzzleHttp\Promise\RejectedPromise` in either an `$onFulfilled` or
php-guzzlehttp-promises-1.4.0/README.md:163:`$onRejected` callback.
php-guzzlehttp-promises-1.4.0/README.md-164-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-178-
php-guzzlehttp-promises-1.4.0/README.md:179:If an exception is not thrown in a `$onRejected` callback and the callback
php-guzzlehttp-promises-1.4.0/README.md:180:does not return a rejected promise, downstream `$onFulfilled` callbacks are
php-guzzlehttp-promises-1.4.0/README.md:181:invoked using the value returned from the `$onRejected` callback.
php-guzzlehttp-promises-1.4.0/README.md-182-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-290-
php-guzzlehttp-promises-1.4.0/README.md:291:When creating a promise object, you can provide an optional `$waitFn` and
php-guzzlehttp-promises-1.4.0/README.md:292:`$cancelFn`. `$waitFn` is a function that is invoked with no arguments and is
php-guzzlehttp-promises-1.4.0/README.md:293:expected to resolve the promise. `$cancelFn` is a function with no arguments
php-guzzlehttp-promises-1.4.0/README.md-294-that is expected to cancel the computation of a promise. It is invoked when the
##############################################
php-guzzlehttp-promises-1.4.0/README.md-314-
php-guzzlehttp-promises-1.4.0/README.md:315:- `then(callable $onFulfilled, callable $onRejected) : PromiseInterface`
php-guzzlehttp-promises-1.4.0/README.md-316-  
##############################################
php-guzzlehttp-promises-1.4.0/README.md-318-
php-guzzlehttp-promises-1.4.0/README.md:319:- `otherwise(callable $onRejected) : PromiseInterface`
php-guzzlehttp-promises-1.4.0/README.md-320-  
##############################################
php-guzzlehttp-promises-1.4.0/README.md-322-
php-guzzlehttp-promises-1.4.0/README.md:323:- `wait($unwrap = true) : mixed`
php-guzzlehttp-promises-1.4.0/README.md-324-
##############################################
php-guzzlehttp-promises-1.4.0/README.md-326-  
php-guzzlehttp-promises-1.4.0/README.md:327:  `$unwrap` controls whether or not the value of the promise is returned for a
php-guzzlehttp-promises-1.4.0/README.md-328-  fulfilled promise or if an exception is thrown if the promise is rejected.
##############################################
php-guzzlehttp-promises-1.4.0/README.md-342-
php-guzzlehttp-promises-1.4.0/README.md:343:- `resolve($value)`
php-guzzlehttp-promises-1.4.0/README.md-344-
php-guzzlehttp-promises-1.4.0/README.md:345:  Fulfills the promise with the given `$value`.
php-guzzlehttp-promises-1.4.0/README.md-346-
php-guzzlehttp-promises-1.4.0/README.md:347:- `reject($reason)`
php-guzzlehttp-promises-1.4.0/README.md-348-
php-guzzlehttp-promises-1.4.0/README.md:349:  Rejects the promise with the given `$reason`.
php-guzzlehttp-promises-1.4.0/README.md-350-