for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\XMLReader;
class CData extends Raw
{
/**
* @return string
*/
public function __toString()
return '<![CDATA[ ' . parent::__toString() . ' ]]>';
}