for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CloudFramework;
use CloudFramework\Tool\RequestParser;
use CloudFramework\Patterns\Singleton;
/**
* Class CloudFramework
* @package CloudFramework\Core
*/
class CloudFrameworkApp extends Singleton
{
* @var string
private $app_name;
* @var \CloudFramework\Tool\ConfigLoader $config
protected $config;
public function __construct($name = 'CloudFramework', $configFile = '')
$configFile
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->app_name = $name;
}
public function run()
echo "Hello " . RequestParser::getQueryParam('name');
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.