Zend Framework, at least 1.10, uses conditional class definitions, for example in Zend/InfoCard/Exception.php. phpab should ignore redefinitions within the same file.
if (class_exists("Zend_Exception")) {
abstract class Zend_InfoCard_Exception_Abstract extends Zend_Exception
{
}
} else {
abstract class Zend_InfoCard_Exception_Abstract extends Exception
{
}
}
Zend Framework, at least 1.10, uses conditional class definitions, for example in
Zend/InfoCard/Exception.php
. phpab should ignore redefinitions within the same file.