for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created with PHP 5.6 generator
* User:
* PHP 5.6 generator created by Victor MECH - April 2016
*/
namespace LazyEight\DiTesto\ValueObject;
use LazyEight\BasicTypes\Interfaces\ValueObjectInterface;
use LazyEight\BasicTypes\Stringy;
abstract class AbstractFileContent implements ValueObjectInterface
{
/*
* @var ValueObjectInterface
protected $content;
* @param Stringy $content
public function __construct(Stringy $content)
$this->content = $content;
}
* @return Stringy Raw content
public function getValue()
return clone $this->content;
* @return string
public function __toString()
return $this->content->getValue();