Skip to content

Commit fb7e35f

Browse files
author
Jordan Hall
committed
Minor style fixes
1 parent ae642c7 commit fb7e35f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DOFileCache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function get($key)
145145
}
146146

147147
/**
148-
* Check if the string contains serialized data
148+
* Check if the string contains serialized data.
149149
*
150150
* @param string $string
151151
*
@@ -173,7 +173,7 @@ public function isSerialized($string)
173173
return false;
174174
}
175175

176-
return (@unserialize($string) !== false);
176+
return @unserialize($string) !== false;
177177
}
178178

179179
/**

0 commit comments

Comments
 (0)