for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Contains the Module Manifest class.
*
* @copyright Copyright (c) 2016 Attila Fulop
* @author Attila Fulop
* @license MIT
* @since 2016-08-14
*/
namespace Konekt\Concord\Module;
class Manifest
{
/** @var string */
protected $name;
protected $version;
* Manifest constructor.
* @param string $name
* @param string $version
public function __construct(string $name, string $version)
$this->name = $name;
$this->version = $version;
}
* Returns the module name
* @return string
public function getName()
return $this->name;
* Returns the module version
public function getVersion()
return $this->version;