summaryrefslogtreecommitdiff
path: root/src/countable.cpp
blob: 6182afd29cae591b615274e902d970cdfcc16a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 *  Countable.cpp
 *
 *  Implementation of the Countable interface
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2014 Copernica BV
 */
#include "includes.h"

#include "spl/spl_iterators.h"

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  Implementation of the countable interface
 *  @return zend_class_entry*
 *  @internal
 */
struct _zend_class_entry *Countable::implementation()
{
    return spl_ce_Countable;
}

/**
 *  End namespace
 */
}