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

Commit

Permalink
[zen-46] Replace use statements in documentation and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions test/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

namespace ZendTest\Session;

use Zend\Session\Container,
Zend\Session\Configuration\StandardConfiguration,
Zend\Session\ManagerInterface as Manager,
Zend\Session;
use Zend\Session\Container;
use Zend\Session\Configuration\StandardConfiguration;
use Zend\Session\ManagerInterface as Manager;
use Zend\Session;

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

namespace ZendTest\Session\SaveHandler;

use Zend\Session\SaveHandler\Cache,
Zend\Session\ManagerInterface as Manager,
Zend\Cache\StorageFactory as CacheFactory,
Zend\Cache\Storage\Adapter\AdapterInterface as CacheAdapter;
use Zend\Session\SaveHandler\Cache;
use Zend\Session\ManagerInterface as Manager;
use Zend\Cache\StorageFactory as CacheFactory;
use Zend\Cache\Storage\Adapter\AdapterInterface as CacheAdapter;

/**
* Unit testing for DbTable include all tests for
Expand Down
4 changes: 2 additions & 2 deletions test/SessionManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace ZendTest\Session;

use Zend\Session\SessionManager,
Zend\Session;
use Zend\Session\SessionManager;
use Zend\Session;

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

namespace ZendTest\Session;

use Zend\Session\Storage\SessionStorage,
Zend\Session\Storage\ArrayStorage;
use Zend\Session\Storage\SessionStorage;
use Zend\Session\Storage\ArrayStorage;

/**
* @category Zend
Expand Down
10 changes: 5 additions & 5 deletions test/TestAsset/TestManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

namespace ZendTest\Session\TestAsset;

use Zend\EventManager\EventManagerInterface,
Zend\Session\AbstractManager,
Zend\Session\Configuration\ConfigurationInterface as SessionConfiguration,
Zend\Session\SaveHandler\SaveHandlerInterface as SessionSaveHandler,
Zend\Session\Storage\StorageInterface as SessionStorage;
use Zend\EventManager\EventManagerInterface;
use Zend\Session\AbstractManager;
use Zend\Session\Configuration\ConfigurationInterface as SessionConfiguration;
use Zend\Session\SaveHandler\SaveHandlerInterface as SessionSaveHandler;
use Zend\Session\Storage\StorageInterface as SessionStorage;

class TestManager extends AbstractManager
{
Expand Down

0 comments on commit 3c172af

Please sign in to comment.