php-lpr-bundle/src/Lpr/LprService.php

15 lines
203 B
PHP

<?php
namespace NoccyLabs\Bundle\LprBundle\Lpr;
use NoccyLabs\Lpr\PrintJob;
class LprService
{
public function createPrintJob($document)
{
return new PrintJob($document);
}
}