<?php
class Wrappy
{
    private 
$lineLength;

    function 
__constructConfig $configObj )
    {
        
$this->lineLength $configObj->getLineLength();
    }
}

class 
TextManipulationFactory
{
    function 
getWrappy()
    {
        
$config = new Config();
        return new 
Wrappy($config);
    }
}
?>