Skip to content

Commit 42a9c6c

Browse files
committed
Fixed bug in line 82
1 parent db952e2 commit 42a9c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cookie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public static function pull($key) {
7979
*/
8080
public static function get($key) {
8181

82-
$cookieName = self::$_prefix . $key];
82+
$cookieName = self::$_prefix . $key;
8383

8484
return isset($_COOKIE[$cookieName]) ? $_COOKIE[$cookieName] : null;
8585
}

0 commit comments

Comments
 (0)