for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\Cache\Mock;
/**
* Class IteratorMock
*
* Mock class to test Iterator instanceOf
* @package Tests\Cache\Mock
*/
class IteratorMock implements \Iterator{
public function current()
{
// TODO: Implement current() method.
}
public function next()
// TODO: Implement next() method.
public function key()
// TODO: Implement key() method.
public function valid()
// TODO: Implement valid() method.
public function rewind()
// TODO: Implement rewind() method.