diff options
Diffstat (limited to 'assets/php/vendor/react/event-loop/tests/CallableStub.php')
-rw-r--r-- | assets/php/vendor/react/event-loop/tests/CallableStub.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/assets/php/vendor/react/event-loop/tests/CallableStub.php b/assets/php/vendor/react/event-loop/tests/CallableStub.php new file mode 100644 index 0000000..913d403 --- /dev/null +++ b/assets/php/vendor/react/event-loop/tests/CallableStub.php @@ -0,0 +1,10 @@ +<?php + +namespace React\Tests\EventLoop; + +class CallableStub +{ + public function __invoke() + { + } +} |