for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace rtens\domin\parameters;
class Text {
/** @var string */
private $content;
/**
* @param string $content
*/
public function __construct($content = '') {
$this->content = $content;
}
* @return string
public function getContent() {
return $this->content;