Skip to content

Commit affc1d5

Browse files
Merge branch '2.8' into 3.3
* 2.8: [DI] minor docblock fixes
2 parents d277fc2 + 94c3073 commit affc1d5

File tree

8 files changed

+0
-36
lines changed

8 files changed

+0
-36
lines changed

Data/Bundle/Reader/BundleEntryReader.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,15 @@
2828
*/
2929
class BundleEntryReader implements BundleEntryReaderInterface
3030
{
31-
/**
32-
* @var BundleReaderInterface
33-
*/
3431
private $reader;
3532

3633
/**
3734
* A mapping of locale aliases to locales.
38-
*
39-
* @var array
4035
*/
4136
private $localeAliases = array();
4237

4338
/**
4439
* Creates an entry reader based on the given resource bundle reader.
45-
*
46-
* @param BundleReaderInterface $reader A resource bundle reader to use
4740
*/
4841
public function __construct(BundleReaderInterface $reader)
4942
{

Data/Generator/CurrencyDataGenerator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ class CurrencyDataGenerator extends AbstractDataGenerator
5353

5454
/**
5555
* Monetary units excluded from generation.
56-
*
57-
* @var array
5856
*/
5957
private static $blacklist = array(
6058
self::UNKNOWN_CURRENCY_ID => true,
@@ -162,8 +160,6 @@ protected function generateDataForMeta(BundleReaderInterface $reader, $tempDir)
162160
}
163161

164162
/**
165-
* @param ArrayAccessibleResourceBundle $rootBundle
166-
*
167163
* @return array
168164
*/
169165
private function generateSymbolNamePairs(ArrayAccessibleResourceBundle $rootBundle)

Data/Generator/LanguageDataGenerator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ class LanguageDataGenerator extends AbstractDataGenerator
2828
{
2929
/**
3030
* Source: http://www-01.sil.org/iso639-3/codes.asp.
31-
*
32-
* @var array
3331
*/
3432
private static $preferredAlpha2ToAlpha3Mapping = array(
3533
'ak' => 'aka',

Data/Generator/RegionDataGenerator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ class RegionDataGenerator extends AbstractDataGenerator
4343

4444
/**
4545
* Regions excluded from generation.
46-
*
47-
* @var array
4846
*/
4947
private static $blacklist = array(
5048
self::UNKNOWN_REGION_ID => true,
@@ -135,8 +133,6 @@ protected function generateDataForMeta(BundleReaderInterface $reader, $tempDir)
135133
}
136134

137135
/**
138-
* @param ArrayAccessibleResourceBundle $localeBundle
139-
*
140136
* @return array
141137
*/
142138
protected function generateRegionNames(ArrayAccessibleResourceBundle $localeBundle)

DateFormatter/DateFormat/FullTransformer.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,6 @@ protected function buildCharsMatch($specialChars)
251251
* Normalize a preg_replace match array, removing the numeric keys and returning an associative array
252252
* with the value and pattern values for the matched Transformer.
253253
*
254-
* @param array $data
255-
*
256254
* @return array
257255
*/
258256
protected function normalizeArray(array $data)
@@ -330,8 +328,6 @@ protected function calculateUnixTimestamp(\DateTime $dateTime, array $options)
330328
* Add sensible default values for missing items in the extracted date/time options array. The values
331329
* are base in the beginning of the Unix era.
332330
*
333-
* @param array $options
334-
*
335331
* @return array
336332
*/
337333
private function getDefaultValueForOptions(array $options)

DateFormatter/DateFormat/MonthTransformer.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class MonthTransformer extends Transformer
2222
{
23-
/**
24-
* @var array
25-
*/
2623
protected static $months = array(
2724
'January',
2825
'February',
@@ -40,22 +37,16 @@ class MonthTransformer extends Transformer
4037

4138
/**
4239
* Short months names (first 3 letters).
43-
*
44-
* @var array
4540
*/
4641
protected static $shortMonths = array();
4742

4843
/**
4944
* Flipped $months array, $name => $index.
50-
*
51-
* @var array
5245
*/
5346
protected static $flippedMonths = array();
5447

5548
/**
5649
* Flipped $shortMonths array, $name => $index.
57-
*
58-
* @var array
5950
*/
6051
protected static $flippedShortMonths = array();
6152

DateFormatter/IntlDateFormatter.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ class IntlDateFormatter
7575

7676
/**
7777
* Patterns used to format the date when no pattern is provided.
78-
*
79-
* @var array
8078
*/
8179
private $defaultDateFormats = array(
8280
self::NONE => '',
@@ -88,8 +86,6 @@ class IntlDateFormatter
8886

8987
/**
9088
* Patterns used to format the time when no pattern is provided.
91-
*
92-
* @var array
9389
*/
9490
private $defaultTimeFormats = array(
9591
self::FULL => 'h:mm:ss a zzzz',

Tests/DateFormatter/IntlDateFormatterTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ protected function isIntlFailure($errorCode)
215215
* + 10 seconds) are added, then we have 86,400 seconds (24h * 60min * 60s)
216216
* + 10 seconds
217217
*
218-
* @param array $dataSets
219-
*
220218
* @return array
221219
*/
222220
private function notImplemented(array $dataSets)

0 commit comments

Comments
 (0)