Skip to content

Commit 3cab655

Browse files
author
Matthew Smeets
committed
Remove redundant block comments
1 parent a9d2590 commit 3cab655

File tree

6 files changed

+0
-24
lines changed

6 files changed

+0
-24
lines changed

src/Symfony/Component/Translation/Catalogue/OperationInterface.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,26 +44,20 @@ public function getDomains();
4444
/**
4545
* Returns all valid messages ('all') after operation.
4646
*
47-
* @param string $domain
48-
*
4947
* @return array
5048
*/
5149
public function getMessages(string $domain);
5250

5351
/**
5452
* Returns new messages ('new') after operation.
5553
*
56-
* @param string $domain
57-
*
5854
* @return array
5955
*/
6056
public function getNewMessages(string $domain);
6157

6258
/**
6359
* Returns obsolete messages ('obsolete') after operation.
6460
*
65-
* @param string $domain
66-
*
6761
* @return array
6862
*/
6963
public function getObsoleteMessages(string $domain);

src/Symfony/Component/Translation/Dumper/CsvFileDumper.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ public function formatCatalogue(MessageCatalogue $messages, string $domain, arra
4343

4444
/**
4545
* Sets the delimiter and escape character for CSV.
46-
*
47-
* @param string $delimiter Delimiter character
48-
* @param string $enclosure Enclosure character
4946
*/
5047
public function setCsvControl(string $delimiter = ';', string $enclosure = '"')
5148
{

src/Symfony/Component/Translation/Dumper/FileDumper.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ public function dump(MessageCatalogue $messages, array $options = [])
8787
/**
8888
* Transforms a domain of a message catalogue to its string representation.
8989
*
90-
* @param MessageCatalogue $messages
91-
* @param string $domain
92-
* @param array $options
93-
*
9490
* @return string representation
9591
*/
9692
abstract public function formatCatalogue(MessageCatalogue $messages, string $domain, array $options = []);

src/Symfony/Component/Translation/Extractor/AbstractFileExtractor.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ private function toSplFileInfo(string $file): \SplFileInfo
4949
}
5050

5151
/**
52-
* @param string $file
53-
*
5452
* @return bool
5553
*
5654
* @throws InvalidArgumentException
@@ -65,8 +63,6 @@ protected function isFile(string $file)
6563
}
6664

6765
/**
68-
* @param string $file
69-
*
7066
* @return bool
7167
*/
7268
abstract protected function canBeExtracted(string $file);

src/Symfony/Component/Translation/Loader/CsvFileLoader.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ protected function loadResource($resource)
5151

5252
/**
5353
* Sets the delimiter, enclosure, and escape character for CSV.
54-
*
55-
* @param string $delimiter Delimiter character
56-
* @param string $enclosure Enclosure character
57-
* @param string $escape Escape character
5854
*/
5955
public function setCsvControl(string $delimiter = ';', string $enclosure = '"', string $escape = '\\')
6056
{

src/Symfony/Component/Translation/Reader/TranslationReaderInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ interface TranslationReaderInterface
2222
{
2323
/**
2424
* Reads translation messages from a directory to the catalogue.
25-
*
26-
* @param string $directory
27-
* @param MessageCatalogue $catalogue
2825
*/
2926
public function read(string $directory, MessageCatalogue $catalogue);
3027
}

0 commit comments

Comments
 (0)