for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpHocon\Token\Value;
class NullValue implements SimpleValue
{
/**
* @return null
*/
public function getContent()
return null;
}