Skip to content

Commit

Permalink
Moved Debug and Version into their own namespace, componentizing them.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph Schindler committed Aug 1, 2012
1 parent eb38dc4 commit a6596ed
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library/Zend/Debug.php → library/Zend/Debug/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Zend_Debug.php
*/

namespace Zend;
namespace Zend\Debug;

/**
* Concrete class for generating debug dumps related to the output source.
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Feed/PubSubHubbub/Publisher.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Zend\Http\Request as HttpRequest;
use Zend\Stdlib\ArrayUtils;
use Zend\Uri;
use Zend\Version;
use Zend\Version\Version;

/**
* @category Zend
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Feed/PubSubHubbub/Subscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Zend\Http\Request as HttpRequest;
use Zend\Stdlib\ArrayUtils;
use Zend\Uri;
use Zend\Version;
use Zend\Version\Version;

/**
* @category Zend
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Mvc/View/Console/RouteNotFoundStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
use Zend\Console\AdapterInterface as ConsoleAdapter;
use Zend\Mvc\Router\RouteInterface;
use Zend\View\Model\ConsoleModel;
use Zend\Version;
use Zend\Version\Version;
use Zend\Stdlib\ResponseInterface as Response;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Zend_Version.php
*/

namespace Zend;
namespace Zend\Version;

use Zend\Json\Json;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace ZendTest;

use Zend\Debug;
use Zend\Debug\Debug;

/**
* @category Zend
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Zend_VersionTest.php
*/

use Zend\Version;
use Zend\Version\Version;

/**
* @category Zend
Expand Down

0 comments on commit a6596ed

Please sign in to comment.