for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gr8abbasi\Container;
/**
* Class ServiceLoader
*
* Loads configuration from different file types
*/
class ServiceLoader
{
* @var array $services
private $services;
* Load Services from config files
* using php file config library
public function loadServices($filePath)
$filePath
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
* REMOVE ME AND ADD LIBRARY CODE HERE
$this->services = ['hello'];
return $this->services;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.