for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Terranet\Administrator\Traits;
trait Stringify
{
public function __toString()
return (string) $this->render();
render()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return (string) $this->/** @scrutinizer ignore-call */ render();
}