<?php
class Wrappy
{
private $lineLength;
function __construct()
{
global $configObj;
$this->lineLength = $configObj->getLineLength();
}
}
?>
The Globals Catastrophe
<?php
class Wrappy
{
private $lineLength;
function __construct()
{
global $configObj;
$this->lineLength = $configObj->getLineLength();
}
}
?>