It is okay to implement \Countable in a PHP class that is not meant to be iterable?

149 Views Asked by At

I have a MultipleException class that collects exceptions (e.g. multiple errors in form fields) and implements countable, but I don't want it to be iterable like a list, cause it is actually an exception (you would never throw a list).

Is this okay in terms of software design? Or am I misusing the SPL Countable interface?

Which is the right way?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

It is okay.

Countable is there so that any of your classes can customise the value returned from calling count() with an instance. It is completely separate from a class being iterable.