Skip to content

Commit ed35c36

Browse files
committed
docs: update PHPDoc comments
1 parent 5a340d0 commit ed35c36

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

system/Filters/CSRF.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,7 @@
3030
class CSRF implements FilterInterface
3131
{
3232
/**
33-
* Do whatever processing this filter needs to do.
34-
* By default it should not return anything during
35-
* normal execution. However, when an abnormal state
36-
* is found, it should return an instance of
37-
* CodeIgniter\HTTP\Response. If it does, script
38-
* execution will end and that Response will be
39-
* sent back to the client, allowing for error pages,
40-
* redirects, etc.
33+
* CSRF verification.
4134
*
4235
* @param list<string>|null $arguments
4336
*

system/Security/Security.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private function configureCookie(CookieConfig $cookie): void
233233
}
234234

235235
/**
236-
* CSRF Verify
236+
* CSRF verification.
237237
*
238238
* @return $this
239239
*

0 commit comments

Comments
 (0)