for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BestServedCold\PhalueObjects\VOString;
use BestServedCold\PhalueObjects\VOString;
/**
* Class StringableTrait
*
* @package BestServedCold\PhalueObjects\VOString
*/
trait Mixin
{
* @return string
public abstract function toString();
* @return VOString
public function toVOString()
return VOString::fromString($this->toString());
}
* @param VOString $voString
* @return static
public static function fromVOString(VOString $voString)
return static::fromString($voString->getValue());
fromString()
BestServedCold\PhalueObjects\VOString\Mixin
fromVOString()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.