<?php
class Wrappy
{
    private 
$lineLength;

    function 
__constructConfigInterface $configObj null )
    {
        
$this->lineLength $configObj $configObj->getLineLength() : 78;
    }
}

$wrap = new Wrappy();
?>