<?php
class Wrappy
{
private $lineLength;
function __construct()
{
$configObj = new Config();
$this->lineLength = $configObj->getLineLength();
}
}
?>
Hard Dependency
<?php
class Wrappy
{
private $lineLength;
function __construct()
{
$configObj = new Config();
$this->lineLength = $configObj->getLineLength();
}
}
?>