summaryrefslogtreecommitdiff
path: root/include/traversable.h
blob: 57cc9bce779316ccee37723a7dedff7933625001 (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
/**
 *  Traversable.h
 *
 *  Interface that should be implemented by classes that want to be
 *  traversable. A traversable objects can be iterated over in a PHP
 *  foreach loop.
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2014 Copernica BV
 */

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

/**
 *  Class definition
 */
class Traversable
{


};

/**
 *  End namespace
 */
}