for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK Stackoverflow API
*
* @filesource
* @license MIT
* @copyright 2016 Cross Solution <http://cross-solution.de>
*/
/** */
namespace StackoverflowApi\Options;
use Zend\Stdlib\AbstractOptions;
* Module options
* @author Mathias Gelhausen <[email protected]>
class ModuleOptions extends AbstractOptions
{
* The authorization code for the Stackoverflow api
* @var string
private $authorizationCode = '';
* Set the authorization code.
* @param string $authorizationCode
* @return self
public function setAuthorizationCode($authorizationCode)
$this->authorizationCode = (string) $authorizationCode;
return $this;
}
* Get the authorization code.
* @return string
public function getAuthorizationCode()
return $this->authorizationCode;