File: /home/cafsindia/lead_cafsinfotech_in/vendor/laminas/laminas-code/src/Generator/BodyGenerator.php
<?php
namespace Laminas\Code\Generator;
class BodyGenerator extends AbstractGenerator
{
protected string $content = '';
/**
* @param string $content
* @return BodyGenerator
*/
public function setContent($content)
{
$this->content = (string) $content;
return $this;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @return string
*/
public function generate()
{
return $this->getContent();
}
}