Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kduma committed Apr 17, 2019
1 parent 6ff261c commit e40b5fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/client-example.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

use KDuma\LPD\Client\Configuration;
use KDuma\LPD\Client\DebugHandler\BasicDebugHandler;
use KDuma\LPD\Client\Exceptions\InvalidJobException;
use KDuma\LPD\Client\Exceptions\PrintErrorException;
use KDuma\LPD\Client\Configuration;
use KDuma\LPD\Client\Jobs\FileJob;
use KDuma\LPD\Client\Jobs\TextJob;
use KDuma\LPD\Client\PrintService;
Expand All @@ -21,7 +21,7 @@

$jobs = [
new TextJob("This is test!"),
new FileJob(__FILE__)
new FileJob(__FILE__),
];

foreach ($jobs as $job) {
Expand Down

0 comments on commit e40b5fd

Please sign in to comment.