for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of slick/mvc
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Slick\Mvc\Console\Command\Task\AskForNamespace;
* NameSpaceEntry
* @package Slick\Mvc\Console\Command\Task\AskForNamespace
* @author Filipe Silva <[email protected]>
class NameSpaceEntry
{
* @var string
private $nameSpace;
private $path;
* Creates a Namespace Entry
* @param string $nameSpace
* @param string $path
public function __construct($nameSpace, $path)
$this->nameSpace = $nameSpace;
$this->path = $path;
}
* Get the entry name space
* @return string
public function getNameSpace()
return $this->nameSpace;
* Get the path for this name space entry
public function getPath()
return $this->path;