Skip to content

Commit fb98d22

Browse files
committed
fixed CS
1 parent 2c6ece8 commit fb98d22

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Service/ServiceSubscriberInterface.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ interface ServiceSubscriberInterface
3333
*
3434
* For mandatory dependencies:
3535
*
36-
* * array('logger' => 'Psr\Log\LoggerInterface') means the objects use the "logger" name
36+
* * ['logger' => 'Psr\Log\LoggerInterface'] means the objects use the "logger" name
3737
* internally to fetch a service which must implement Psr\Log\LoggerInterface.
38-
* * array('loggers' => 'Psr\Log\LoggerInterface[]') means the objects use the "loggers" name
38+
* * ['loggers' => 'Psr\Log\LoggerInterface[]'] means the objects use the "loggers" name
3939
* internally to fetch an iterable of Psr\Log\LoggerInterface instances.
40-
* * array('Psr\Log\LoggerInterface') is a shortcut for
41-
* * array('Psr\Log\LoggerInterface' => 'Psr\Log\LoggerInterface')
40+
* * ['Psr\Log\LoggerInterface'] is a shortcut for
41+
* * ['Psr\Log\LoggerInterface' => 'Psr\Log\LoggerInterface']
4242
*
4343
* otherwise:
4444
*
45-
* * array('logger' => '?Psr\Log\LoggerInterface') denotes an optional dependency
46-
* * array('loggers' => '?Psr\Log\LoggerInterface[]') denotes an optional iterable dependency
47-
* * array('?Psr\Log\LoggerInterface') is a shortcut for
48-
* * array('Psr\Log\LoggerInterface' => '?Psr\Log\LoggerInterface')
45+
* * ['logger' => '?Psr\Log\LoggerInterface'] denotes an optional dependency
46+
* * ['loggers' => '?Psr\Log\LoggerInterface[]'] denotes an optional iterable dependency
47+
* * ['?Psr\Log\LoggerInterface'] is a shortcut for
48+
* * ['Psr\Log\LoggerInterface' => '?Psr\Log\LoggerInterface']
4949
*
5050
* @return array The required service types, optionally keyed by service names
5151
*/

0 commit comments

Comments
 (0)