<?php
class Wrappy
{
    private 
$lineLength;

    function 
__construct()
    {
        global 
$configObj;
        
$this->lineLength $configObj->getLineLength();
    }
}
?>
The Globals Catastrophe