We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The method increment in cache\ArrayStore has a bug that array index out of range
increment
cache\ArrayStore
public function increment($key, $value = 1) { // $key not exist // if (!isset($this->storage[$key])) $this->storage[$key] = 0; $this->storage[$key] = ((int) $this->storage[$key]) + $value; return $this->storage[$key]; }
https://github.com/laravel/framework/blob/5.4/src/Illuminate/Cache/ArrayStore.php#L53
The text was updated successfully, but these errors were encountered:
handled in #20156
Thanks :)
Sorry, something went wrong.
No branches or pull requests
Description:
The method
increment
incache\ArrayStore
has a bug that array index out of rangehttps://github.com/laravel/framework/blob/5.4/src/Illuminate/Cache/ArrayStore.php#L53
The text was updated successfully, but these errors were encountered: