<?php namespace React\Promise; use Countable; use RuntimeException; class CountableException extends RuntimeException implements Countable { public function count(): int { return 0; } }