From 92e225300d3f42d049f8904495df7c2f55d43acb Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Fri, 16 Dec 2022 16:23:48 -0600 Subject: [PATCH] Declare strict types --- src/Cancellation.php | 2 +- src/CancelledException.php | 2 +- src/Closable.php | 2 +- src/CompositeCancellation.php | 2 +- src/CompositeException.php | 2 +- src/CompositeLengthException.php | 2 +- src/DeferredCancellation.php | 2 +- src/DeferredFuture.php | 2 +- src/ForbidCloning.php | 2 +- src/ForbidSerialization.php | 2 +- src/Future.php | 2 +- src/Future/UnhandledFutureError.php | 2 +- src/Future/functions.php | 2 +- src/Internal/Cancellable.php | 2 +- src/Internal/FutureIterator.php | 2 +- src/Internal/FutureIteratorQueue.php | 2 +- src/Internal/FutureState.php | 2 +- src/Internal/WrappedCancellation.php | 2 +- src/Internal/functions.php | 2 +- src/NullCancellation.php | 2 +- src/SignalCancellation.php | 2 +- src/SignalException.php | 2 +- src/TimeoutCancellation.php | 2 +- src/TimeoutException.php | 2 +- src/functions.php | 2 +- test/CallbackStub.php | 2 +- test/Cancellation/CancellationTest.php | 2 +- test/Cancellation/CompositeCancellationTest.php | 2 +- test/Cancellation/SignalCancellationTest.php | 2 +- test/Cancellation/TimeoutCancellationTest.php | 2 +- test/Future/AwaitAllTest.php | 2 +- test/Future/AwaitAnyNTest.php | 2 +- test/Future/AwaitAnyTest.php | 2 +- test/Future/AwaitFirstTest.php | 2 +- test/Future/AwaitTest.php | 2 +- test/Future/FutureTest.php | 2 +- test/TestCase.php | 2 +- test/WeakClosureTest.php | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/src/Cancellation.php b/src/Cancellation.php index 6aece720..51f56449 100644 --- a/src/Cancellation.php +++ b/src/Cancellation.php @@ -1,4 +1,4 @@ -