Since you are already working with PHP classes and have the ability to change the architecture, you should try to separate them as much as possible from external variables. If you need to do backward compatibility, you can also set default variables.
class Bla
{
public function blaBla($var = false)
{
if(!$var && isset($_GET))
$var = $_GET;
}
}
$bla = new Bla();
$bla->blaBla();
$bla->blaBla($_GET);
define() ( , Zend Framework).
, . . , define() , , "" ( , ... ).