for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Openl10n\Cli\Project;
class ProjectHandler
{
protected $projectSlug;
/**
* @param string $projectSlug
*/
public function __construct($projectSlug)
$this->projectSlug = $projectSlug;
}
* @return string
public function getProjectSlug()
return $this->projectSlug;