mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
Fix newlines.
This commit is contained in:
parent
a915d86978
commit
c49c8a60ab
@ -12,4 +12,4 @@ echo word_wrap($string, 25);
|
||||
function.
|
||||
|
||||
Excessively long words will be split, but URLs will not be.
|
||||
*/
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
*/
|
||||
|
@ -9,4 +9,4 @@
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
||||
];
|
||||
|
@ -6,5 +6,4 @@
|
||||
'key' => 'The actual message to be shown.',
|
||||
],
|
||||
],
|
||||
]
|
||||
;
|
||||
];
|
||||
|
@ -2,4 +2,4 @@
|
||||
|
||||
if ($response->hasCookie($name)) {
|
||||
// ...
|
||||
}
|
||||
}
|
||||
|
@ -12,4 +12,4 @@ class UserModel
|
||||
'login' => config('Auth')->allowRemembering ? date('Y-m-d') : null,
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,4 +8,4 @@ class UserFabricator extends \App\Models\UserModel
|
||||
{
|
||||
// ...
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -12,4 +12,4 @@ class UserModel
|
||||
'group_id' => rand(1, Fabricator::getCount('groups')),
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -16,4 +16,4 @@ class AuthenticationFeatureTest
|
||||
use AuthTrait;
|
||||
|
||||
// ...
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user