Skip to content

Commit 1ef1cdd

Browse files
Merge branch '3.4'
* 3.4: [3.4] Remove useless docblocks [3.3] More docblock fixes [2.7] More docblock fixes [TwigBridge] Fix BC break due required twig environment Random fixes Docblock fixes [DI] Fix cannot bind env var Fix some signatures in PHP-DSLs [HttpKernel] Enhance deprecation message bumped Symfony version to 3.4.0 updated VERSION for 3.4.0-BETA3 updated CHANGELOG for 3.4.0-BETA3 [SecurityBundle] Fix the datacollector to properly support decision.object being null
2 parents fb768b7 + 0eaa19c commit 1ef1cdd

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
lines changed

Encoder/CsvEncoder.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,6 @@ private function getCsvOptions(array $context)
207207
}
208208

209209
/**
210-
* @param array $data
211-
*
212210
* @return string[]
213211
*/
214212
private function extractHeaders(array $data)

Mapping/ClassMetadata.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
class ClassMetadata implements ClassMetadataInterface
2020
{
2121
/**
22-
* @var string
23-
*
2422
* @internal This property is public in order to reduce the size of the
2523
* class' serialized representation. Do not access it. Use
2624
* {@link getName()} instead.

Mapping/Loader/LoaderChain.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,12 @@ public function loadClassMetadata(ClassMetadataInterface $metadata)
6060

6161
return $success;
6262
}
63+
64+
/**
65+
* @return LoaderInterface[]
66+
*/
67+
public function getLoaders()
68+
{
69+
return $this->loaders;
70+
}
6371
}

Normalizer/DateIntervalNormalizer.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ class DateIntervalNormalizer implements NormalizerInterface, DenormalizerInterfa
2424
{
2525
const FORMAT_KEY = 'dateinterval_format';
2626

27-
/**
28-
* @var string
29-
*/
3027
private $format;
3128

3229
/**

Normalizer/DateTimeNormalizer.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ class DateTimeNormalizer implements NormalizerInterface, DenormalizerInterface
2525
const FORMAT_KEY = 'datetime_format';
2626
const TIMEZONE_KEY = 'datetime_timezone';
2727

28-
/**
29-
* @var string
30-
*/
3128
private $format;
3229
private $timezone;
3330

@@ -122,8 +119,6 @@ public function supportsDenormalization($data, $type, $format = null)
122119
/**
123120
* Formats datetime errors.
124121
*
125-
* @param array $errors
126-
*
127122
* @return string[]
128123
*/
129124
private function formatDateTimeErrors(array $errors)

Normalizer/GetSetMethodNormalizer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ private function supports($class)
7676
/**
7777
* Checks if a method's name is get.* or is.*, and can be called without parameters.
7878
*
79-
* @param \ReflectionMethod $method the method to check
80-
*
8179
* @return bool whether the method is a getter or boolean getter
8280
*/
8381
private function isGetMethod(\ReflectionMethod $method)

0 commit comments

Comments
 (0)