Skip to content

Commit

Permalink
#1 Applied style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iisisrael committed Jun 16, 2020
1 parent d088ce0 commit e52750d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
'phpdoc_align' => ['align' => 'left'],
])
->setFinder($finder)
;
2 changes: 1 addition & 1 deletion src/Entity/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Client implements RecipientInterface
use RecipientTrait;

/**
* Client genders
* Client genders.
*/
const GENDER_FEMALE = 'F';
const GENDER_MALE = 'M';
Expand Down
2 changes: 1 addition & 1 deletion src/Form/DataTransformer/HouseholdToUuidTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function transform($household): string
/**
* Transforms a UUID to a Household entity.
*
* @throws TransformationFailedException if Household is not found.
* @throws TransformationFailedException if Household is not found
*/
public function reverseTransform($uuid)
{
Expand Down
1 change: 0 additions & 1 deletion tests/BaseUnitTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public function tearDown(): void
* Set a protected property's value by reflection.
*
* @param object $object
* @param string $property
* @param mixed $value
*/
protected function setPropertyValue($object, string $property, $value): ReflectionProperty
Expand Down

0 comments on commit e52750d

Please sign in to comment.