Skip to content

Commit

Permalink
Drop support for ZendX pseudo namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare committed Dec 30, 2018
1 parent 01f21b2 commit 9b068ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions library/Zend/Loader/Autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ class Zend_Loader_Autoloader
protected $_internalAutoloader;

/**
* @var array Supported namespaces 'Zend' and 'ZendX' by default.
* This used to also support the ZendX pseudo namespace which wasn't
* really used anywhere in zendframework1.
*
* @var array Supported namespace 'Zend' by default.
*/
protected $_namespaces = array(
'Zend_' => true,
'ZendX_' => true,
);

/**
Expand Down

0 comments on commit 9b068ec

Please sign in to comment.