Skip to content

Commit

Permalink
Fix php_cs_fixer warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
covex-nn committed Jan 10, 2018
1 parent 27b92fd commit 5e3cb09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function getConfigTreeBuilder()
$rootNode
->children()
->scalarNode('db_driver')
->defaultValue("no_driver")
->defaultValue('no_driver')
->validate()
->ifNotInArray($supportedDrivers)
->thenInvalid('The driver %s is not supported. Please choose one of '.json_encode($supportedDrivers))
Expand Down
2 changes: 1 addition & 1 deletion Model/GroupManagerNone.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace FOS\UserBundle\Model;

/**
* Fallback Group Manager implementation when db_driver is not configured
* Fallback Group Manager implementation when db_driver is not configured.
*
* @author Andrey F. Mindubaev <[email protected]>
*/
Expand Down
2 changes: 1 addition & 1 deletion Model/UserManagerNone.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace FOS\UserBundle\Model;

/**
* Fallback User Manager implementation when db_driver is not configured
* Fallback User Manager implementation when db_driver is not configured.
*
* @author Andrey F. Mindubaev <[email protected]>
*/
Expand Down

0 comments on commit 5e3cb09

Please sign in to comment.