for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Graze\CiffRenderer\Test;
use Graze\CiffRenderer\Parser\SimpleXmlElementInterface;
class SimpleXmlElementMock implements SimpleXmlElementInterface
{
/**
* Emulate \SimpleXmlElement's object access and method chaining
* @param string $name
*/
public function __get($name)
return $this;
}