summaryrefslogtreecommitdiff
path: root/include/countable.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/countable.h')
-rw-r--r--include/countable.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/countable.h b/include/countable.h
index 12d87d5..1b99463 100644
--- a/include/countable.h
+++ b/include/countable.h
@@ -25,17 +25,11 @@ class Countable
{
public:
/**
- * Implementation of the countable interface
- * @return zend_class_entry*
- * @internal
- */
- static struct _zend_class_entry *implementation();
-
- /**
* Retrieve the number of items in the class
* @return Value
*/
virtual Value count() = 0;
+
};
/**