8000 fixed a phpdoc · symfony/symfony@c866efa · GitHub
[go: up one dir, main page]

Skip to content

Commit c866efa

Browse files
committed
fixed a phpdoc
1 parent a462760 commit c866efa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@
2121
interface FlashBagInterface extends SessionBagInterface
2222
{
2323
/**
24-
* Adds a flash message for type.
24+
* Adds a flash message for the given type.
2525
*
2626
* @param string $type
2727
* @param mixed $message
2828
*/
2929
public function add($type, $message);
3030

3131
/**
32-
* Registers a message for a given type.
32+
* Registers one or more messages for a given type.
3333
*
3434
* @param string $type
35-
* @param string|array $message
35+
* @param string|array $messages
3636
*/
37-
public function set($type, $message);
37+
public function set($type, $messages);
3838

3939
/**
4040
* Gets flash messages for a given type.

0 commit comments

Comments
 (0)
0