Skip to content

Commit a26ea59

Browse files
[DI] minor docblock fixes
1 parent 52df900 commit a26ea59

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
@@ -253,8 +253,6 @@ protected function buildCharsMatch($specialChars)
253253
* Normalize a preg_replace match array, removing the numeric keys and returning an associative array
254254
* with the value and pattern values for the matched Transformer.
255255
*
256-
* @param array $data
257-
*
258256
* @return array
259257
*/
260258
protected function normalizeArray(array $data)
@@ -332,8 +330,6 @@ protected function calculateUnixTimestamp(\DateTime $dateTime, array $options)
332330
* Add sensible default values for missing items in the extracted date/time options array. The values
333331
* are base in the beginning of the Unix era.
334332
*
335-
* @param array $options
336-
*
337333
* @return array
338334
*/
339335
private function getDefaultValueForOptions(array $options)

DateFormatter/DateFormat/MonthTransformer.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
*/
1919
class MonthTransformer extends Transformer
2020
{
21-
/**
22-
* @var array
23-
*/
2421
protected static $months = array(
2522
'January',
2623
'February',
@@ -38,22 +35,16 @@ class MonthTransformer extends Transformer
3835

3936
/**
4037
* Short months names (first 3 letters).
41-
*
42-
* @var array
4338
*/
4439
protected static $shortMonths = array();
4540

4641
/**
4742
* Flipped $months array, $name => $index.
48-
*
49-
* @var array
5043
*/
5144
protected static $flippedMonths = array();
5245

5346
/**
5447
* Flipped $shortMonths array, $name => $index.
55-
*
56-
* @var array
5748
*/
5849
protected static $flippedShortMonths = array();
5950

DateFormatter/IntlDateFormatter.php

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

7474
/**
7575
* Patterns used to format the date when no pattern is provided.
76-
*
77-
* @var array
7876
*/
7977
private $defaultDateFormats = array(
8078
self::NONE => '',
@@ -86,8 +84,6 @@ class IntlDateFormatter
8684

8785
/**
8886
* Patterns used to format the time when no pattern is provided.
89-
*
90-
* @var array
9187
*/
9288
private $defaultTimeFormats = array(
9389
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)