Skip to content

Commit 2a07082

Browse files
Merge branch '3.4'
* 3.4: [DI] minor docblock fixes
2 parents 6fd409f + e7bfada commit 2a07082

File tree

7 files changed

+0
-42
lines changed

7 files changed

+0
-42
lines changed

Catalogue/AbstractOperation.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,8 @@
2626
*/
2727
abstract class AbstractOperation implements OperationInterface
2828
{
29-
/**
30-
* @var MessageCatalogueInterface The source catalogue
31-
*/
3229
protected $source;
33-
34-
/**
35-
* @var MessageCatalogueInterface The target catalogue
36-
*/
3730
protected $target;
38-
39-
/**
40-
* @var MessageCatalogue The result catalogue
41-
*/
4231
protected $result;
4332

4433
/**
@@ -71,9 +60,6 @@ abstract class AbstractOperation implements OperationInterface
7160
protected $messages;
7261

7362
/**
74-
* @param MessageCatalogueInterface $source The source catalogue
75-
* @param MessageCatalogueInterface $target The target catalogue
76-
*
7763
* @throws LogicException
7864
*/
7965
public function __construct(MessageCatalogueInterface $source, MessageCatalogueInterface $target)

DataCollector/TranslationDataCollector.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,8 @@
2222
*/
2323
class TranslationDataCollector extends DataCollector implements LateDataCollectorInterface
2424
{
25-
/**
26-
* @var DataCollectorTranslator
27-
*/
2825
private $translator;
2926

30-
/**
31-
* @param DataCollectorTranslator $translator
32-
*/
3327
public function __construct(DataCollectorTranslator $translator)
3428
{
3529
$this->translator = $translator;

DataCollectorTranslator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ class DataCollectorTranslator implements TranslatorInterface, TranslatorBagInter
2727
*/
2828
private $translator;
2929

30-
/**
31-
* @var array
32-
*/
3330
private $messages = array();
3431

3532
/**

Loader/PoFileLoader.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ protected function loadResource($resource)
123123
*
124124
* A .po file could contain by error missing plural indexes. We need to
125125
* fix these before saving them.
126-
*
127-
* @param array $messages
128-
* @param array $item
129126
*/
130127
private function addMessage(array &$messages, array $item)
131128
{

MessageCatalogueInterface.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ public function add($messages, $domain = 'messages');
104104
* Merges translations from the given Catalogue into the current one.
105105
*
106106
* The two catalogues must have the same locale.
107-
*
108-
* @param self $catalogue
109107
*/
110108
public function addCatalogue(MessageCatalogueInterface $catalogue);
111109

@@ -114,8 +112,6 @@ public function addCatalogue(MessageCatalogueInterface $catalogue);
114112
* only when the translation does not exist.
115113
*
116114
* This is used to provide default translations when they do not exist for the current locale.
117-
*
118-
* @param self $catalogue
119115
*/
120116
public function addFallbackCatalogue(MessageCatalogueInterface $catalogue);
121117

@@ -135,8 +131,6 @@ public function getResources();
135131

136132
/**
137133
* Adds a resource for this collection.
138-
*
139-
* @param ResourceInterface $resource A resource instance
140134
*/
141135
public function addResource(ResourceInterface $resource);
142136
}

Translator.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ public function __construct($locale, MessageFormatterInterface $formatter = null
9494
$this->debug = $debug;
9595
}
9696

97-
/**
98-
* Sets the ConfigCache factory to use.
99-
*
100-
* @param ConfigCacheFactoryInterface $configCacheFactory
101-
*/
10297
public function setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory)
10398
{
10499
$this->configCacheFactory = $configCacheFactory;

Writer/TranslationWriter.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
*/
2424
class TranslationWriter implements TranslationWriterInterface
2525
{
26-
/**
27-
* Dumpers used for export.
28-
*
29-
* @var array
30-
*/
3126
private $dumpers = array();
3227

3328
/**

0 commit comments

Comments
 (0)