* @copyright Meritoo */ trait CountableTrait { /** * {@inheritdoc} */ public function count() { return count($this->elements); } }