for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* @author Tom Klingenberg <https://github.com/ktomk>
*/
namespace N98\Magento\Api;
class Module implements ModuleInterface
{
private $name;
private $version;
/**
* Module constructor.
*
* @param string $name
* @param string $version
public function __construct($name, $version)
$this->name = $name;
$this->version = $version;
}
* {@inheritdoc}
public function getName()
return $this->name;
public function getVersion()
return $this->version;