Skip to content

Commit 4a46c6f

Browse files
committed
fixed CS
1 parent 2d0634d commit 4a46c6f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/Symfony/Component/Form/Extension/Core/Type/DateType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public function configureOptions(OptionsResolver $resolver)
221221
array('year' => $default, 'month' => $default, 'day' => $default),
222222
$choiceTranslationDomain
223223
);
224-
};
224+
}
225225

226226
return array(
227227
'year' => $choiceTranslationDomain,

src/Symfony/Component/Form/Extension/Core/Type/TimeType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public function configureOptions(OptionsResolver $resolver)
222222
array('hour' => $default, 'minute' => $default, 'second' => $default),
223223
$choiceTranslationDomain
224224
);
225-
};
225+
}
226226

227227
return array(
228228
'hour' => $choiceTranslationDomain,

src/Symfony/Component/PropertyInfo/PropertyInfoExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class PropertyInfoExtractor implements PropertyInfoExtractorInterface
4444
* @param PropertyDescriptionExtractorInterface[] $descriptionExtractors
4545
* @param PropertyAccessExtractorInterface[] $accessExtractors
4646
*/
47-
public function __construct(array $listExtractors = array(), array $typeExtractors = array(), array $descriptionExtractors = array(), array $accessExtractors = array())
47+
public function __construct(array $listExtractors = array(), array $typeExtractors = array(), array $descriptionExtractors = array(), array $accessExtractors = array())
4848
{
4949
$this->listExtractors = $listExtractors;
5050
$this->typeExtractors = $typeExtractors;

src/Symfony/Component/Serializer/Tests/Encoder/JsonDecodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function decodeProvider()
6161
*/
6262
public function testDecodeWithException($value)
6363
{
64-
$this->decode->decode($value, JsonEncoder::FORMAT);
64+
$this->decode->decode($value, JsonEncoder::FORMAT);
6565
}
6666

6767
public function decodeProviderException()

src/Symfony/Component/Serializer/Tests/Encoder/JsonEncodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ public function encodeProvider()
5454
*/
5555
public function testEncodeWithError()
5656
{
57-
$this->encode->encode("\xB1\x31", JsonEncoder::FORMAT);
57+
$this->encode->encode("\xB1\x31", JsonEncoder::FORMAT);
5858
}
5959
}

src/Symfony/Component/Translation/Tests/Dumper/FileDumperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testDump()
2626
$dumper = new ConcreteFileDumper();
2727
$dumper->dump($catalogue, array('path' => $tempDir));
2828

29-
$this->assertTrue(file_exists($tempDir.'/messages.en.concrete'));
29+
$this->assertFileExists($tempDir.'/messages.en.concrete');
3030
}
3131

3232
public function testDumpBackupsFileIfExisting()

src/Symfony/Component/Translation/Util/ArrayConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static function &getElementByPath(array &$tree, array $parts)
6262
* $tree['foo'] was string before we found array {bar: test2}.
6363
* Treat new element as string too, e.g. add $tree['foo.bar'] = 'test2';
6464
*/
65-
$elem = &$elem[ implode('.', array_slice($parts, $i)) ];
65+
$elem = &$elem[implode('.', array_slice($parts, $i))];
6666
break;
6767
}
6868
$parentOfElem = &$elem;

src/Symfony/Component/Validator/Constraints/BicValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @author Michael Hirschler <michael.vhirsch@gmail.com>
1919
*
20-
* @link https://en.wikipedia.org/wiki/ISO_9362#Structure
20+
* @see https://en.wikipedia.org/wiki/ISO_9362#Structure
2121
*/
2222
class BicValidator extends ConstraintValidator
2323
{

0 commit comments

Comments
 (0)