for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\Xsd\XsdToPhp\PathGenerator;
abstract class Psr4PathGenerator
{
protected $namespaces = array();
public function __construct(array $targets = array())
$this->setTargets($targets);
}
public function setTargets($namespaces)
$this->namespaces = $namespaces;
foreach ($this->namespaces as $namespace => $dir) {
if (!is_dir($dir)) {
mkdir($dir, 0777, true);