Fix newlines.

This commit is contained in:
Alex Schmitz 2022-02-24 08:29:44 +01:00
parent a915d86978
commit c49c8a60ab
No known key found for this signature in database
GPG Key ID: 1C4ABB8AD68D49FD
9 changed files with 9 additions and 10 deletions

View File

@ -12,4 +12,4 @@ echo word_wrap($string, 25);
function.
Excessively long words will be split, but URLs will not be.
*/
*/

View File

@ -8,4 +8,4 @@ $client->request('GET', 'http://example.com', ['allow_redirects' => true]);
'max' => 5, // Maximum number of redirects to follow before stopping
'strict' => true, // Ensure POST requests stay POST requests through redirects
'protocols' => ['http', 'https'] // Restrict redirects to one or more protocols
*/
*/

View File

@ -9,4 +9,4 @@
]
]
]
];
];

View File

@ -6,5 +6,4 @@
'key' => 'The actual message to be shown.',
],
],
]
;
];

View File

@ -2,4 +2,4 @@
if ($response->hasCookie($name)) {
// ...
}
}

View File

@ -12,4 +12,4 @@ class UserModel
'login' => config('Auth')->allowRemembering ? date('Y-m-d') : null,
];
}
}
}

View File

@ -8,4 +8,4 @@ class UserFabricator extends \App\Models\UserModel
{
// ...
}
}
}

View File

@ -12,4 +12,4 @@ class UserModel
'group_id' => rand(1, Fabricator::getCount('groups')),
];
}
}
}

View File

@ -16,4 +16,4 @@ class AuthenticationFeatureTest
use AuthTrait;
// ...
}
}