<?php
class Wrappy
{
private $lineLength;
function __construct( ConfigInterface $configObj = null )
{
$this->lineLength = $configObj ? $configObj->getLineLength() : 78;
}
}
$wrap = new Wrappy();
?>
<?php
class Wrappy
{
private $lineLength;
function __construct( ConfigInterface $configObj = null )
{
$this->lineLength = $configObj ? $configObj->getLineLength() : 78;
}
}
$wrap = new Wrappy();
?>