moved iterators to interpreters

This commit is contained in:
Steffen Vogel 2010-09-22 20:52:59 +02:00
parent 1b4d7b3661
commit af51e7855d
3 changed files with 6 additions and 12 deletions

View file

@ -23,17 +23,11 @@
namespace Volkszaehler\Interpreter;
/**
*
* @package default
* @author Steffen Vogel <info@steffenvogel.de>
*
*/
use Volkszaehler\Iterator;
use Volkszaehler;
use Volkszaehler\Interpreter\Iterator;
use Doctrine\ORM;
use Volkszaehler\Model;
use Doctrine\ORM\Query;
/**
* Interpreter superclass for all interpreters
*
@ -56,7 +50,7 @@ abstract class Interpreter implements InterpreterInterface {
* @param integer $from timestamp in ms since 1970
* @param integer $to timestamp in ms since 1970
*/
public function __construct(\Volkszaehler\Model\Channel $channel, \Doctrine\ORM\EntityManager $em, $from = NULL, $to = NULL) {
public function __construct(Model\Channel $channel, ORM\EntityManager $em, $from = NULL, $to = NULL) {
$this->channel = $channel;
$this->em = $em;

View file

@ -21,7 +21,7 @@
* along with volkszaehler.org. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Volkszaehler\Iterator;
namespace Volkszaehler\Interpreter\Iterator;
use Doctrine\DBAL;

View file

@ -21,7 +21,7 @@
* along with volkszaehler.org. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Volkszaehler\Iterator;
namespace Volkszaehler\Interpreter\Iterator;
use Doctrine\DBAL;