Skip to content

Commit

Permalink
added error_reporting( E_ALL )
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/XML_Beautifier/trunk@148542 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Stephan Schmidt committed Jan 12, 2004
1 parent f1a8547 commit 3f2d2bf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/example1.php
Expand Up @@ -6,6 +6,7 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

require_once 'XML/Beautifier.php';
$fmt = new XML_Beautifier();
Expand Down
2 changes: 2 additions & 0 deletions examples/example2.php
Expand Up @@ -8,6 +8,8 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

$xmlString = '<xml><foo bar="tomato &amp; Cheese"/><argh>foobar</argh></xml>';

require_once 'XML/Beautifier.php';
Expand Down
2 changes: 2 additions & 0 deletions examples/example3.php
Expand Up @@ -10,6 +10,8 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

require_once 'XML/Beautifier.php';

$options = array(
Expand Down
1 change: 1 addition & 0 deletions examples/example4.php
Expand Up @@ -8,6 +8,7 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

require_once 'XML/Beautifier.php';

Expand Down
1 change: 1 addition & 0 deletions examples/example5.php
Expand Up @@ -11,6 +11,7 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

require_once 'XML/Beautifier.php';

Expand Down
2 changes: 2 additions & 0 deletions examples/example6.php
Expand Up @@ -8,8 +8,10 @@
*
* @author Stephan Schmidt <schst@php.net>
*/
error_reporting( E_ALL );

require_once 'XML/Beautifier.php';

$fmt = new XML_Beautifier( array( "multilineTags" => true ) );
$result = $fmt->formatFile('test.xml');

Expand Down

0 comments on commit 3f2d2bf

Please sign in to comment.