Skip to content

Commit 5e3cb09

Browse files
committed
Fix php_cs_fixer warnings
1 parent 27b92fd commit 5e3cb09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function getConfigTreeBuilder()
3939
$rootNode
4040
->children()
4141
->scalarNode('db_driver')
42-
->defaultValue("no_driver")
42+
->defaultValue('no_driver')
4343
->validate()
4444
->ifNotInArray($supportedDrivers)
4545
->thenInvalid('The driver %s is not supported. Please choose one of '.json_encode($supportedDrivers))

Model/GroupManagerNone.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace FOS\UserBundle\Model;
1313

1414
/**
15-
* Fallback Group Manager implementation when db_driver is not configured
15+
* Fallback Group Manager implementation when db_driver is not configured.
1616
*
1717
* @author Andrey F. Mindubaev <andrey@mindubaev.ru>
1818
*/

Model/UserManagerNone.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace FOS\UserBundle\Model;
1313

1414
/**
15-
* Fallback User Manager implementation when db_driver is not configured
15+
* Fallback User Manager implementation when db_driver is not configured.
1616
*
1717
* @author Andrey F. Mindubaev <andrey@mindubaev.ru>
1818
*/

0 commit comments

Comments
 (0)