primo commit
This commit is contained in:
		
							
								
								
									
										46
									
								
								libraries/vendor/guzzlehttp/promises/src/Is.php
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								libraries/vendor/guzzlehttp/promises/src/Is.php
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,46 @@ | ||||
| <?php | ||||
|  | ||||
| namespace GuzzleHttp\Promise; | ||||
|  | ||||
| final class Is | ||||
| { | ||||
|     /** | ||||
|      * Returns true if a promise is pending. | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public static function pending(PromiseInterface $promise) | ||||
|     { | ||||
|         return $promise->getState() === PromiseInterface::PENDING; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Returns true if a promise is fulfilled or rejected. | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public static function settled(PromiseInterface $promise) | ||||
|     { | ||||
|         return $promise->getState() !== PromiseInterface::PENDING; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Returns true if a promise is fulfilled. | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public static function fulfilled(PromiseInterface $promise) | ||||
|     { | ||||
|         return $promise->getState() === PromiseInterface::FULFILLED; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Returns true if a promise is rejected. | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public static function rejected(PromiseInterface $promise) | ||||
|     { | ||||
|         return $promise->getState() === PromiseInterface::REJECTED; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user