<?php
class Wrappy
{
private $lineLength;
function __construct( Config $configObj )
{
$this->lineLength = $configObj->getLineLength();
}
}
/*
<service>
<wrappy>
<config>
...
</wrappy>
</service>
*/
$wrappy = ServiceDepmanager::createWrappy();
?>