@@ -25,14 +25,14 @@ If you install the component via Composer, the following classes and functions
25
25
of the intl extension will be automatically provided if the intl extension is
26
26
not loaded:
27
27
28
- * :phpclass: `` Collator` `
29
- * :phpclass: `` IntlDateFormatter` `
30
- * :phpclass: `` Locale` `
31
- * :phpclass: `` NumberFormatter` `
32
- * :phpfunction: `` intl_error_name` `
33
- * :phpfunction: `` intl_is_failure` `
34
- * :phpfunction: `` intl_get_error_code` `
35
- * :phpfunction: `` intl_get_error_message` `
28
+ * :phpclass: `Collator `
29
+ * :phpclass: `IntlDateFormatter `
30
+ * :phpclass: `Locale `
31
+ * :phpclass: `NumberFormatter `
32
+ * :phpfunction: `intl_error_name `
33
+ * :phpfunction: `intl_is_failure `
34
+ * :phpfunction: `intl_get_error_code `
35
+ * :phpfunction: `intl_get_error_message `
36
36
37
37
If you don't use Composer but the Symfony ClassLoader component, you need to
38
38
load them manually by adding the following lines to your autoload code::
@@ -59,14 +59,14 @@ locales, `install the intl extension`_ instead.
59
59
Locale
60
60
~~~~~~
61
61
62
- The only method supported in the :phpclass: `` Locale` ` class is
62
+ The only method supported in the :phpclass: `Locale ` class is
63
63
:phpmethod: `Locale::getDefault `. This method will always return "en". All other
64
64
methods will throw an exception when used.
65
65
66
66
NumberFormatter
67
67
~~~~~~~~~~~~~~~
68
68
69
- Numbers can be formatted with the :phpclass: `` NumberFormatter` ` class.
69
+ Numbers can be formatted with the :phpclass: `NumberFormatter ` class.
70
70
The following methods are supported. All other methods are not supported and
71
71
will throw an exception when used.
72
72
@@ -288,7 +288,7 @@ class::
288
288
'Data' => array(
289
289
'entry1',
290
290
'entry2',
291
- ...
291
+ // ...
292
292
),
293
293
));
294
294
@@ -314,7 +314,7 @@ Writes an array or an array-like object to a .php resource bundle::
314
314
'Data' => array(
315
315
'entry1',
316
316
'entry2',
317
- ...
317
+ // ...
318
318
),
319
319
));
320
320
0 commit comments