moved iterators to interpreters
This commit is contained in:
parent
1b4d7b3661
commit
af51e7855d
3 changed files with 6 additions and 12 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
Loading…
Add table
Reference in a new issue