remove extraneous space

This commit is contained in:
Philipp Holzer 2019-04-21 12:24:48 +02:00
parent e604b3239d
commit bc8d444989
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ abstract class AbstractCacheDriver extends BaseObject
*/
protected function getCacheKey($key)
{
return $this->getPrefix() . ":" . $key;
return $this->getPrefix() . ":" . $key;
}
/**