for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\ComposerConfigManager\Domain\Model;
class AutoloadEntry
{
/** @var string */
private $namespace;
private $path;
/**
* @param string $namespace
* @param string $path
*/
public function __construct($namespace, $path)
$this->namespace = $namespace;
$this->path = $path;
}
* @return string
public function getNamespace()
return $this->namespace;
public function getPath()
return $this->path;