Skip to content

Commit c61bac0

Browse files
committed
Apply fixes from StyleCI
1 parent 8a46320 commit c61bac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Collections/Collection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -986,10 +986,10 @@ public function select($keys)
986986
*/
987987
public function pop($count = 1)
988988
{
989-
if ($count < 1) {
989+
if ($count < 1) {
990990
return new static;
991991
}
992-
992+
993993
if ($count === 1) {
994994
return array_pop($this->items);
995995
}

0 commit comments

Comments
 (0)