Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 1, 2016
1 parent 86a5b89 commit 37665f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Session/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function push($key, $value)
* Increment the value of an item in the session.
*
* @param string $key
* @param mixed $amount
* @param int $amount
* @return mixed
*/
public function increment($key, $amount = 1)
Expand All @@ -433,7 +433,7 @@ public function increment($key, $amount = 1)
* Decrement the value of an item in the session.
*
* @param string $key
* @param mixed $amount
* @param int $amount
* @return int
*/
public function decrement($key, $amount = 1)
Expand Down

0 comments on commit 37665f1

Please sign in to comment.