for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AppUtils;
class VariableInfo_Renderer_String_Integer extends VariableInfo_Renderer_String
{
protected function _render()
return (string)$this->value;
}