Initial commit

This commit is contained in:
2017-10-31 18:01:17 +01:00
commit 296bf30c6d
8 changed files with 113 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace NoccyLabs\Bundle\LprBundle\Lpr;
use NoccyLabs\Lpr\PrintJob;
class LprService
{
public function createPrintJob($document)
{
return new PrintJob($document);
}
}