for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BestServedCold\PhalueObjects\Format\Xml\Node;
class CDataSection implements NodeInterface
{
private $key = '@cdata';
public static function run($node)
return trim($node->textContent);
}
public function getKey()
return $this->key;