ZF-2586: Replace multiple dirname call
Description
It's a common practice to call dirname multiple times to require the TestHelper file from a parent directory.
require_once dirname(dirname(dirname(__FILE__))) . '/TestHelper.php';
The code above should be replaced with the following one
require_once dirname(__FILE__) . '/../../TestHelper.php';
Comments
Posted by Wil Sinclair (wil) on 2008-06-15T13:59:59.000+0000
Changing to comply with new IT coventions for components.