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

Commit

Permalink
Remove global prefix in use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w authored and weierophinney committed Jul 11, 2012
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions test/Filter/ChainingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace ZendTest\Log\Filter;

use \Zend\Log\Logger;
use \Zend\Log\Writer;
use Zend\Log\Logger;
use Zend\Log\Writer;

/**
* @category Zend
Expand Down
4 changes: 2 additions & 2 deletions test/Filter/PriorityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace ZendTest\Log\Filter;

use \Zend\Log\Logger;
use \Zend\Log\Filter\Priority;
use Zend\Log\Logger;
use Zend\Log\Filter\Priority;

/**
* @category Zend
Expand Down
4 changes: 2 additions & 2 deletions test/Filter/SuppressFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace ZendTest\Log\Filter;

use \Zend\Log\Filter\SuppressFilter;
use \Zend\Log\Logger;
use Zend\Log\Filter\SuppressFilter;
use Zend\Log\Logger;

/**
* @category Zend
Expand Down
2 changes: 1 addition & 1 deletion test/Formatter/SimpleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace ZendTest\Log\Formatter;

use ZendTest\Log\TestAsset\StringObject;
use \Zend\Log\Formatter\Simple;
use Zend\Log\Formatter\Simple;

/**
* @category Zend
Expand Down

0 comments on commit 7946c9f

Please sign in to comment.