for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\DataCacher;
/**
* Class BaseDataCacher
*
* @package Thruster\Component\DataCacher
* @author Aurimas Niekis <[email protected]>
*/
abstract class BaseDataCacher implements DataCacherInterface
{
* @inheritDoc
public function getValue($input)
return $input;
}
public function getTTL($input): int
return 0;