Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Fix use statements in Zend\Barcode
Browse files Browse the repository at this point in the history
  • Loading branch information
prolic authored and weierophinney committed Jul 9, 2012
1 parent 138f773 commit 2af0d37
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions src/Barcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

namespace Zend\Barcode;

use Traversable,
Zend,
Zend\Stdlib\ArrayUtils;
use Traversable;
use Zend;
use Zend\Stdlib\ArrayUtils;

/**
* Class for generate Barcode
Expand Down
8 changes: 4 additions & 4 deletions src/Object/AbstractObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

namespace Zend\Barcode\Object;

use Traversable,
Zend\Barcode,
Zend\Validator\Barcode as BarcodeValidator,
Zend\Stdlib\ArrayUtils;
use Traversable;
use Zend\Barcode;
use Zend\Validator\Barcode as BarcodeValidator;
use Zend\Stdlib\ArrayUtils;

/**
* Class for generate Barcode
Expand Down
10 changes: 5 additions & 5 deletions src/Renderer/AbstractRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

namespace Zend\Barcode\Renderer;

use Traversable,
Zend\Barcode\Barcode,
Zend\Barcode\Exception as BarcodeException,
Zend\Barcode\Object,
Zend\Stdlib\ArrayUtils;
use Traversable;
use Zend\Barcode\Barcode;
use Zend\Barcode\Exception as BarcodeException;
use Zend\Barcode\Object;
use Zend\Stdlib\ArrayUtils;

/**
* Class for rendering the barcode
Expand Down
8 changes: 4 additions & 4 deletions src/Renderer/Pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

namespace Zend\Barcode\Renderer;

use Zend\Pdf\Color,
Zend\Pdf\Font,
Zend\Pdf\Page,
Zend\Pdf\PdfDocument;
use Zend\Pdf\Color;
use Zend\Pdf\Font;
use Zend\Pdf\Page;
use Zend\Pdf\PdfDocument;

/**
* Class for rendering the barcode in PDF resource
Expand Down
4 changes: 2 additions & 2 deletions src/Renderer/Svg.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Zend\Barcode\Renderer;

use DOMDocument,
DOMText;
use DOMDocument;
use DOMText;

/**
* Class for rendering the barcode as svg
Expand Down
10 changes: 5 additions & 5 deletions test/FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
*/

namespace ZendTest\Barcode;
use Zend\Barcode,
Zend\Barcode\Renderer,
Zend\Barcode\Object,
Zend\Config\Config,
Zend\Pdf;
use Zend\Barcode;
use Zend\Barcode\Renderer;
use Zend\Barcode\Object;
use Zend\Config\Config;
use Zend\Pdf;

/**
* @category Zend
Expand Down
6 changes: 3 additions & 3 deletions test/Object/TestCommon.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
*/

namespace ZendTest\Barcode\Object;
use ZendTest\Barcode\Object\TestAsset,
Zend\Barcode,
Zend\Config;
use ZendTest\Barcode\Object\TestAsset;
use Zend\Barcode;
use Zend\Config;

/**
* @category Zend
Expand Down

0 comments on commit 2af0d37

Please sign in to comment.