You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Gets the value of the exact key
*
* @param string $key
* @return mixed
*/
public function get($key)
{
$value = $this->em->getRepository('ElcwebKeyValueStoreBundle:KeyValue')->findOneByKey($key);
if (!$value) {
return false;
}
return $value->getValue();
}
The text was updated successfully, but these errors were encountered:
class KeyValueStore
The text was updated successfully, but these errors were encountered: