diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-30 15:26:24 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-30 15:26:24 +0200 |
commit | c30d77fc85dc04a21ac5eadc8cffe202a4b36ce7 (patch) | |
tree | 62923015555dfce44c319f42dd3e7ce0ef26b564 /Iterator | |
parent | 5014dacc007cf99cd9862684e54ddc79e20c275f (diff) | |
download | Praspel-c30d77fc85dc04a21ac5eadc8cffe202a4b36ce7.zip Praspel-c30d77fc85dc04a21ac5eadc8cffe202a4b36ce7.tar.gz Praspel-c30d77fc85dc04a21ac5eadc8cffe202a4b36ce7.tar.bz2 |
Use Hoa\Iterator.
Diffstat (limited to 'Iterator')
-rw-r--r-- | Iterator/Coverage/Domain.php | 13 | ||||
-rw-r--r-- | Iterator/Coverage/Structural.php | 9 |
2 files changed, 19 insertions, 3 deletions
diff --git a/Iterator/Coverage/Domain.php b/Iterator/Coverage/Domain.php index ddd0932..6698684 100644 --- a/Iterator/Coverage/Domain.php +++ b/Iterator/Coverage/Domain.php @@ -34,6 +34,17 @@ * POSSIBILITY OF SUCH DAMAGE. */ +namespace { + +from('Hoa') + +/** + * \Hoa\Iterator + */ +-> import('Iterator.~'); + +} + namespace Hoa\Praspel\Iterator\Coverage { /** @@ -46,7 +57,7 @@ namespace Hoa\Praspel\Iterator\Coverage { * @license New BSD License */ -class Domain implements \Iterator { +class Domain implements \Hoa\Iterator { /** * Variables to cover. diff --git a/Iterator/Coverage/Structural.php b/Iterator/Coverage/Structural.php index 67a58b4..60c4300 100644 --- a/Iterator/Coverage/Structural.php +++ b/Iterator/Coverage/Structural.php @@ -41,7 +41,12 @@ from('Hoa') /** * \Hoa\Praspel\Iterator\WeakStack */ --> import('Praspel.Iterator.WeakStack'); +-> import('Praspel.Iterator.WeakStack') + +/** + * \Hoa\Iterator + */ +-> import('Iterator.~'); } @@ -57,7 +62,7 @@ namespace Hoa\Praspel\Iterator\Coverage { * @license New BSD License */ -class Structural implements \Iterator { +class Structural implements \Hoa\Iterator { /** * Specification to cover. |