Apply fixes from StyleCI (#732)

[ci skip] [skip ci]
This commit is contained in:
Dane Everitt 2017-11-05 13:40:12 -05:00 committed by GitHub
parent e945033c95
commit aa86fe83e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -69,7 +69,7 @@ class ScheduleCreationFormRequest extends ServerFormRequest
{
$restructured = [];
foreach (array_get($this->all(), 'tasks', []) as $key => $values) {
for ($i = 0; $i < count($values); ++$i) {
for ($i = 0; $i < count($values); $i++) {
$restructured[$i][$key] = $values[$i];
}
}