Make XMLOutputter work with phpcs
A couple of small changes to comply with code standards. Also, note that the second param of element() and elementStart() can be a string.
This commit is contained in:
parent
bbb32dd2f6
commit
10fcbe9da3
@ -63,8 +63,8 @@ class XMLOutputter
|
|||||||
*
|
*
|
||||||
* Initializes the wrapped XMLWriter.
|
* Initializes the wrapped XMLWriter.
|
||||||
*
|
*
|
||||||
* @param $output URL for outputting, defaults to stdout
|
* @param string $output URL for outputting, defaults to stdout
|
||||||
* @param $indent Whether to indent output, default true
|
* @param boolean $indent Whether to indent output, default true
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function __construct($output='php://output', $indent=true)
|
function __construct($output='php://output', $indent=true)
|
||||||
@ -119,6 +119,9 @@ class XMLOutputter
|
|||||||
* raw output, use elementStart() and elementEnd() with a call
|
* raw output, use elementStart() and elementEnd() with a call
|
||||||
* to raw() in the middle.
|
* to raw() in the middle.
|
||||||
*
|
*
|
||||||
|
* If $attrs is a string instead of an array, it will be treated
|
||||||
|
* as the class attribute of the element.
|
||||||
|
*
|
||||||
* @param string $tag Element type or tagname
|
* @param string $tag Element type or tagname
|
||||||
* @param array $attrs Array of element attributes, as
|
* @param array $attrs Array of element attributes, as
|
||||||
* key-value pairs
|
* key-value pairs
|
||||||
@ -142,6 +145,9 @@ class XMLOutputter
|
|||||||
* Mostly used for when an element has content that's
|
* Mostly used for when an element has content that's
|
||||||
* not a simple string.
|
* not a simple string.
|
||||||
*
|
*
|
||||||
|
* If $attrs is a string instead of an array, it will be treated
|
||||||
|
* as the class attribute of the element.
|
||||||
|
*
|
||||||
* @param string $tag Element type or tagname
|
* @param string $tag Element type or tagname
|
||||||
* @param array $attrs Array of element attributes
|
* @param array $attrs Array of element attributes
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user