Skip to content

Commit e5d6ef7

Browse files
committed
minor #24342 removed useless PHPDoc (OskarStark)
This PR was squashed before being merged into the 2.7 branch (closes #24342). Discussion ---------- removed useless PHPDoc | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no <!-- don't forget updating src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | n/a Commits ------- 5ee9043d8b removed useless PHPDoc
2 parents f5d9264 + 16eb1e4 commit e5d6ef7

9 files changed

+0
-19
lines changed

Collator/Collator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ class Collator
6868
const SORT_STRING = 1;
6969

7070
/**
71-
* Constructor.
72-
*
7371
* @param string $locale The locale code. The only currently supported locale is "en" (or null using the default locale, i.e. "en")
7472
*
7573
* @throws MethodArgumentValueNotImplementedException When $locale different than "en" or null is passed

DateFormatter/DateFormat/FullTransformer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class FullTransformer
3535
private $timezone;
3636

3737
/**
38-
* Constructor.
39-
*
4038
* @param string $pattern The pattern to be used to format and/or parse values
4139
* @param string $timezone The timezone to perform the date/time calculations
4240
*/

DateFormatter/DateFormat/MonthTransformer.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@ class MonthTransformer extends Transformer
5757
*/
5858
protected static $flippedShortMonths = array();
5959

60-
/**
61-
* Constructor.
62-
*/
6360
public function __construct()
6461
{
6562
if (0 === count(self::$shortMonths)) {

DateFormatter/IntlDateFormatter.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ class IntlDateFormatter
127127
private $timeZoneId;
128128

129129
/**
130-
* Constructor.
131-
*
132130
* @param string $locale The locale code. The only currently supported locale is "en" (or null using the default locale, i.e. "en")
133131
* @param int $datetype Type of date formatting, one of the format type constants
134132
* @param int $timetype Type of time formatting, one of the format type constants

Exception/MethodArgumentNotImplementedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
class MethodArgumentNotImplementedException extends NotImplementedException
1818
{
1919
/**
20-
* Constructor.
21-
*
2220
* @param string $methodName The method name that raised the exception
2321
* @param string $argName The argument name that is not implemented
2422
*/

Exception/MethodArgumentValueNotImplementedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
class MethodArgumentValueNotImplementedException extends NotImplementedException
1818
{
1919
/**
20-
* Constructor.
21-
*
2220
* @param string $methodName The method name that raised the exception
2321
* @param string $argName The argument name
2422
* @param string $argValue The argument value that is not implemented

Exception/MethodNotImplementedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
class MethodNotImplementedException extends NotImplementedException
1818
{
1919
/**
20-
* Constructor.
21-
*
2220
* @param string $methodName The name of the method
2321
*/
2422
public function __construct($methodName)

Exception/NotImplementedException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class NotImplementedException extends RuntimeException
2121
const INTL_INSTALL_MESSAGE = 'Please install the "intl" extension for full localization capabilities.';
2222

2323
/**
24-
* Constructor.
25-
*
2624
* @param string $message The exception message. A note to install the intl extension is appended to this string
2725
*/
2826
public function __construct($message)

NumberFormatter/NumberFormatter.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,6 @@ class NumberFormatter
255255
);
256256

257257
/**
258-
* Constructor.
259-
*
260258
* @param string $locale The locale code. The only currently supported locale is "en" (or null using the default locale, i.e. "en")
261259
* @param int $style Style of the formatting, one of the format style constants.
262260
* The only supported styles are NumberFormatter::DECIMAL

0 commit comments

Comments
 (0)