for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is, guess what, part of WebHelper.
*
* (c) James <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JamesRezo\WebHelper\WebServer;
* NginxWebServer is the webserver class for nginx httpd webserver.
class NginxWebServer extends WebServer
{
* Constructor.
* @param int $version the version of the nginx webserver
public function __construct($version = '')
parent::__construct('nginx', $version);
}