Upgrade to rc5

This commit is contained in:
Bastian Allgeier
2020-12-10 11:24:42 +01:00
parent 3fec0d7c93
commit c378376bc9
257 changed files with 13009 additions and 1846 deletions

View File

@@ -87,7 +87,7 @@ class Roles extends Collection
}
// return the collection sorted by name
return $collection->sortBy('name', 'asc');
return $collection->sort('name', 'asc');
}
/**
@@ -134,6 +134,6 @@ class Roles extends Collection
}
// return the collection sorted by name
return $roles->sortBy('name', 'asc');
return $roles->sort('name', 'asc');
}
}