for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* NoopFactory.php
*
* @copyright More in license.md
* @license https://www.ipublikuj.eu
* @author Adam Kadlec <[email protected]>
* @package iPublikuj:Flysystem!
* @subpackage Cache
* @since 1.0.0
* @date 26.04.16
*/
declare(strict_types = 1);
namespace IPub\Flysystem\Factories\Cache;
use Nette\Utils;
use League\Flysystem\Cached;
* Noop cache
class NoopFactory
{
* @param Utils\ArrayHash $parameters
* @return Cached\Storage\Noop
public static function create(Utils\ArrayHash $parameters) : Cached\Storage\Noop
$parameters
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return new Cached\Storage\Noop;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.