for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MemoryFactory.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 23.04.16
*/
declare(strict_types = 1);
namespace IPub\Flysystem\Factories\Cache;
use Nette\Utils;
use League\Flysystem\Cached;
* Memory cache
class MemoryFactory
{
* @param Utils\ArrayHash $parameters
* @return Cached\Storage\Memory
public static function create(Utils\ArrayHash $parameters) : Cached\Storage\Memory
$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\Memory;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.